summary refs log tree commit diff stats
path: root/share
diff options
context:
space:
mode:
authorBerke Viktor <bviktor@hexchat.org>2012-10-30 08:58:50 +0100
committerBerke Viktor <bviktor@hexchat.org>2012-10-30 08:58:50 +0100
commit8d6f4d9d40c68f3174cbe94f7107dea74d00d5fc (patch)
tree5c2cdf86338b10b5d4202491a03d84f5ae4126e5 /share
parente681eafa78262d0c177832d67900687f2c938081 (diff)
Some remaining fixes
Diffstat (limited to 'share')
-rw-r--r--share/doc/dbus.md6
-rw-r--r--share/doc/perl.md2
-rw-r--r--share/doc/plugins.md2
3 files changed, 5 insertions, 5 deletions
diff --git a/share/doc/dbus.md b/share/doc/dbus.md
index d3c986df..8db9c340 100644
--- a/share/doc/dbus.md
+++ b/share/doc/dbus.md
@@ -70,7 +70,7 @@ You can use the "/org/hexchat/Remote" object with interface "org.hexchat.plugin"
 		* gchar\*: Name of the command (without the forward slash).
 		* int: Priority of this command.
 		* gchar\*: String of text to display when the user executes /help for this command. May be NULL if you're lazy.
-		* int: Value to returns when the command is catched. See XCHAT\_EAT\_*.
+		* int: Value to returns when the command is catched. See HEXCHAT\_EAT\_*.
 	* Returns:
 		* guint: The ID of the hook.
 
@@ -78,7 +78,7 @@ You can use the "/org/hexchat/Remote" object with interface "org.hexchat.plugin"
 	* Parameters:
 		* gchar\*: Name of the server event.
 		* int: Priority of this command.
-		* int: Value to returns when the command is catched. See XCHAT\_EAT\_*.
+		* int: Value to returns when the command is catched. See HEXCHAT\_EAT\_*.
 	* Returns:
 		* guint: The ID of the hook.
 
@@ -86,7 +86,7 @@ You can use the "/org/hexchat/Remote" object with interface "org.hexchat.plugin"
 	* Parameters:
 		* gchar\*: Name of the print event.
 		* int: Priority of this command.
-		* int: Value to returns when the command is catched. See XCHAT\_EAT\_*.
+		* int: Value to returns when the command is catched. See HEXCHAT\_EAT\_*.
 	* Returns:
 		* guint: The ID of the hook.
 
diff --git a/share/doc/perl.md b/share/doc/perl.md
index c0a45f27..d1553c65 100644
--- a/share/doc/perl.md
+++ b/share/doc/perl.md
@@ -514,7 +514,7 @@ a context cannot be found.</p>
 </table><p>This function is used to retrieve certain information about the current
 context. If there is an associated command then that command can be used to change the value for a particular ID.</p><p>
 </p>
-<h3><a name="xchat_get_prefs" /><code>Xchat::get_prefs( $name )</code></h3>
+<h3><a name="hexchat_get_prefs" /><code>Xchat::get_prefs( $name )</code></h3>
 <ul>
 <li><strong><code>$name</code> -  name of a X-Chat setting (available through the /set command)</strong>
 </li>
diff --git a/share/doc/plugins.md b/share/doc/plugins.md
index aee9d174..bf2255c1 100644
--- a/share/doc/plugins.md
+++ b/share/doc/plugins.md
@@ -875,7 +875,7 @@ A few extra bits of information are available that don't appear in the _/SET_ li
 	int i;
 	const char *str;
 
-	if (xchat_get_prefs (ph, "irc_nick1", &amp;str, &amp;i) == 1)
+	if (hexchat_get_prefs (ph, "irc_nick1", &amp;str, &amp;i) == 1)
 	{
 		hexchat_printf (ph, "Current nickname setting: %s\n", str);
 	}