diff options
| -rw-r--r-- | doc/scriptexamples/runmenu.kvs | 6 | ||||
| -rw-r--r-- | src/kvirc/kernel/kvi_options.cpp | 2 | ||||
| -rw-r--r-- | src/kvirc/kvs/kvi_kvs_eventtable.cpp | 2 | ||||
| -rw-r--r-- | src/modules/dcc/libkvidcc.cpp | 4 |
4 files changed, 7 insertions, 7 deletions
diff --git a/doc/scriptexamples/runmenu.kvs b/doc/scriptexamples/runmenu.kvs index dea6a27d3..20240a1e6 100644 --- a/doc/scriptexamples/runmenu.kvs +++ b/doc/scriptexamples/runmenu.kvs @@ -36,10 +36,10 @@ defpopup(runmenu) run konqueror } - item(netscape,164) + item(firefox,164) { - if($system.ostype == unix)run kvi_run_netscape - else run netscape.exe + if($system.ostype == unix)run firefox + else run firefox.exe } } diff --git a/src/kvirc/kernel/kvi_options.cpp b/src/kvirc/kernel/kvi_options.cpp index 49a9d7169..25778480a 100644 --- a/src/kvirc/kernel/kvi_options.cpp +++ b/src/kvirc/kernel/kvi_options.cpp @@ -331,7 +331,7 @@ KviBoolOption g_boolOptionsTable[KVI_NUM_BOOL_OPTIONS]= #ifdef COMPILE_ON_MAC #define RUN_THE_BROWSER "run open $0" #else - #define RUN_THE_BROWSER "run kvi_run_netscape $0" + #define RUN_THE_BROWSER "run x-www-browser $0" #endif #endif #endif diff --git a/src/kvirc/kvs/kvi_kvs_eventtable.cpp b/src/kvirc/kvs/kvi_kvs_eventtable.cpp index e8f070420..a4656b720 100644 --- a/src/kvirc/kvs/kvi_kvs_eventtable.cpp +++ b/src/kvirc/kvs/kvi_kvs_eventtable.cpp @@ -925,7 +925,7 @@ KviKvsEvent KviKvsEventManager::m_appEventTable[KVI_KVS_NUM_APP_EVENTS]= Command name is set if the visible name differs with the actual link target(probably contains mIRC colors,etc). It is equal to the actual target name. This event is triggered when an user has right clicked on an URL link in the text view. The double click link action is builtin and it causes KVIrc - to open the URL with a browser (konqueror in KDE compilation mode or netscape).[br] + to open the URL with a browser (tipically your os default browser).[br] This is a good place to show a [cmd]popup[/cmd] menu with some operations that can be performed with the URL , like bookmarking in some way or opening with a specific browser.[br] diff --git a/src/modules/dcc/libkvidcc.cpp b/src/modules/dcc/libkvidcc.cpp index 6b7f3a258..620a6f3e6 100644 --- a/src/modules/dcc/libkvidcc.cpp +++ b/src/modules/dcc/libkvidcc.cpp @@ -348,8 +348,8 @@ static bool dcc_kvs_parse_default_parameters(KviDccDescriptor * d,KviKvsModuleCo to do various things: [example] # Tricky: simulate a HTTP server - dcc.chat -n -i=127.0.0.1 -p=80 Netscape - # Now open http://127.0.0.1 with netscape + dcc.chat -n -i=127.0.0.1 -p=80 WebBrowser + # Now open http://127.0.0.1 with your web browser # and type "<html><body>Hello!</body></html>" :) # # Tricky 2: simulate the ident daemon (if you have none) |
