diff options
author | TingPing <tingping@tingping.se> | 2013-06-01 19:06:58 -0400 |
---|---|---|
committer | TingPing <tingping@tingping.se> | 2013-06-01 19:06:58 -0400 |
commit | 1277b4c30f9040e0b8b193691c529b5aedcf0dad (patch) | |
tree | 5f7e4524916da56d2ddbc02390af5f6ddb6c6429 /plugins/sysinfo | |
parent | e1ce1c90f78192c67826e307efccd0d35da3615d (diff) |
be more specific about sysinfo menu entry
Diffstat (limited to 'plugins/sysinfo')
-rw-r--r-- | plugins/sysinfo/sysinfo.cpp | 2 | ||||
-rw-r--r-- | plugins/sysinfo/xsys.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/sysinfo/sysinfo.cpp b/plugins/sysinfo/sysinfo.cpp index 7412d0d2..43ab48c0 100644 --- a/plugins/sysinfo/sysinfo.cpp +++ b/plugins/sysinfo/sysinfo.cpp @@ -399,7 +399,7 @@ hexchat_plugin_init (hexchat_plugin *plugin_handle, char **plugin_name, char **p firstRun = 1; hexchat_hook_command (ph, "SYSINFO", HEXCHAT_PRI_NORM, printInfo, helptext, NULL); - hexchat_command (ph, "MENU -ishare\\system.png ADD \"Window/Display System Info\" \"SYSINFO\""); + hexchat_command (ph, "MENU -ishare\\system.png ADD \"Window/Send System Info\" \"SYSINFO\""); hexchat_printf (ph, "%s plugin loaded\n", name); diff --git a/plugins/sysinfo/xsys.c b/plugins/sysinfo/xsys.c index 98bc9017..eb71cb94 100644 --- a/plugins/sysinfo/xsys.c +++ b/plugins/sysinfo/xsys.c @@ -867,7 +867,7 @@ hexchat_plugin_init (hexchat_plugin *plugin_handle, char **plugin_name, char **p hexchat_pluginpref_set_int (ph, "percent", DEFAULT_PERCENT); } - hexchat_command (ph, "MENU ADD \"Window/Display System Info\" \"SYSINFO\""); + hexchat_command (ph, "MENU ADD \"Window/Send System Info\" \"SYSINFO\""); hexchat_printf (ph, "%s plugin loaded\n", name); return 1; } |