aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartijn Kaijser <machine.sanctum@gmail.com>2013-03-25 03:00:34 -0700
committerMartijn Kaijser <machine.sanctum@gmail.com>2013-03-25 03:00:34 -0700
commit0587b0bfa4c3ed041bcaf0ab27a6f4d3a79a4423 (patch)
treee1e77959c7b3630ae1820d1049950b6b55779cae
parent3392ddf17312771b10e781c7a6cd218ec37e620e (diff)
parent0aa40754062f5c89accf8639a6c31adac446b87e (diff)
Merge pull request #2490 from MartijnKaijser/remove_xbox
[cosmetic] remove the mentions of xbox in pydocs code
-rw-r--r--xbmc/interfaces/legacy/ModuleXbmc.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/xbmc/interfaces/legacy/ModuleXbmc.h b/xbmc/interfaces/legacy/ModuleXbmc.h
index 6b074f7ba6..6c8cf09700 100644
--- a/xbmc/interfaces/legacy/ModuleXbmc.h
+++ b/xbmc/interfaces/legacy/ModuleXbmc.h
@@ -58,7 +58,7 @@ namespace XBMCAddon
void log(const char* msg, int level = lLOGNOTICE);
/**
- * Shutdown() -- Shutdown the xbox.
+ * Shutdown() -- Shutdown the htpc.
*
* example:
* - xbmc.shutdown()
@@ -66,7 +66,7 @@ namespace XBMCAddon
void shutdown();
/**
- * restart() -- Restart the xbox.
+ * restart() -- Restart the htpc.
* example:
* - xbmc.restart()
*/
@@ -287,9 +287,9 @@ namespace XBMCAddon
*
* path : string or unicode - Path to format
*
- * *Note, Only useful if you are coding for both Linux and Windows/Xbox.
+ * *Note, Only useful if you are coding for both Linux and Windows.
* e.g. Converts 'special://masterprofile/script_data' -> '/home/user/XBMC/UserData/script_data'
- * on Linux. Would return 'special://masterprofile/script_data' on the Xbox.
+ * on Linux.
*
* example:
* - fpath = xbmc.translatePath('special://masterprofile/script_data')
@@ -312,7 +312,7 @@ namespace XBMCAddon
*
* path : string or unicode - Path to format
*
- * *Note, Only useful if you are coding for both Linux and Windows/Xbox for fixing slash problems.
+ * *Note, Only useful if you are coding for both Linux and Windows for fixing slash problems.
* e.g. Corrects 'Z://something' -> 'Z:\\something'
*
* example: