diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-06 19:44:17 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-06 19:44:17 -0600 |
commit | 5e664c2e4a7b9dcaf2660f8db94a632d1021e2dd (patch) | |
tree | a5eb4cb7c4754e533de65c5adee17d783e426425 /konqueror | |
parent | 98eb308fc180d9bea71f448b262ab796353ac904 (diff) | |
download | tdebase-5e664c2e4a7b9dcaf2660f8db94a632d1021e2dd.tar.gz tdebase-5e664c2e4a7b9dcaf2660f8db94a632d1021e2dd.zip |
Rename KCmd to avoid conflicts with KDE4
Diffstat (limited to 'konqueror')
-rw-r--r-- | konqueror/client/kfmclient.cc | 4 | ||||
-rw-r--r-- | konqueror/keditbookmarks/kbookmarkmerger.cpp | 4 | ||||
-rw-r--r-- | konqueror/keditbookmarks/main.cpp | 4 | ||||
-rw-r--r-- | konqueror/konq_main.cc | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/konqueror/client/kfmclient.cc b/konqueror/client/kfmclient.cc index f5586af62..ca61d80e4 100644 --- a/konqueror/client/kfmclient.cc +++ b/konqueror/client/kfmclient.cc @@ -59,13 +59,13 @@ TQCString clientApp::startup_id_str; bool clientApp::m_ok = true; bool s_interactive = true; -static const KCmdLineOptions options[] = +static const TDECmdLineOptions options[] = { { "noninteractive", I18N_NOOP("Non interactive use: no message boxes"), 0}, { "commands", I18N_NOOP("Show available commands"), 0}, { "+command", I18N_NOOP("Command (see --commands)"), 0}, { "+[URL(s)]", I18N_NOOP("Arguments for command"), 0}, - KCmdLineLastOption + TDECmdLineLastOption }; extern "C" KDE_EXPORT int kdemain( int argc, char **argv ) diff --git a/konqueror/keditbookmarks/kbookmarkmerger.cpp b/konqueror/keditbookmarks/kbookmarkmerger.cpp index 1fbcd6c03..6d7357bb6 100644 --- a/konqueror/keditbookmarks/kbookmarkmerger.cpp +++ b/konqueror/keditbookmarks/kbookmarkmerger.cpp @@ -37,10 +37,10 @@ #include <X11/Xlib.h> -static const KCmdLineOptions cmdLineOptions[] = +static const TDECmdLineOptions cmdLineOptions[] = { { "+directory", I18N_NOOP( "Directory to scan for extra bookmarks" ), 0 }, - KCmdLineLastOption + TDECmdLineLastOption }; // The code for this function was taken from kdesktop/kcheckrunning.cpp diff --git a/konqueror/keditbookmarks/main.cpp b/konqueror/keditbookmarks/main.cpp index 97e7ec0e2..956573280 100644 --- a/konqueror/keditbookmarks/main.cpp +++ b/konqueror/keditbookmarks/main.cpp @@ -40,7 +40,7 @@ #include <kbookmarkmanager.h> #include <kbookmarkexporter.h> -static KCmdLineOptions options[] = { +static TDECmdLineOptions options[] = { {"importmoz <filename>", I18N_NOOP("Import bookmarks from a file in Mozilla format"), 0}, {"importns <filename>", I18N_NOOP("Import bookmarks from a file in Netscape (4.x and earlier) format"), 0}, {"importie <filename>", I18N_NOOP("Import bookmarks from a file in Internet Explorer's Favorites format"), 0}, @@ -56,7 +56,7 @@ static KCmdLineOptions options[] = { {"customcaption <caption>", I18N_NOOP("Set the user readable caption for example \"Konsole\""), 0}, {"nobrowser", I18N_NOOP("Hide all browser related functions"), 0}, {"+[file]", I18N_NOOP("File to edit"), 0}, - KCmdLineLastOption + TDECmdLineLastOption }; static void continueInWindow(TQString _wname) { diff --git a/konqueror/konq_main.cc b/konqueror/konq_main.cc index 9edb00a1b..c166315e8 100644 --- a/konqueror/konq_main.cc +++ b/konqueror/konq_main.cc @@ -36,7 +36,7 @@ #include <tqwidgetlist.h> -static const KCmdLineOptions options[] = +static const TDECmdLineOptions options[] = { { "silent", I18N_NOOP("Start without a default window"), 0 }, { "preload", I18N_NOOP("Preload for later use"), 0 }, @@ -45,7 +45,7 @@ static const KCmdLineOptions options[] = { "mimetype <mimetype>", I18N_NOOP("Mimetype to use for this URL (e.g. text/html or inode/directory)"), 0 }, { "select", I18N_NOOP("For URLs that point to files, opens the directory and selects the file, instead of opening the actual file"), 0 }, { "+[URL]", I18N_NOOP("Location to open"), 0 }, - KCmdLineLastOption + TDECmdLineLastOption }; extern "C" KDE_EXPORT int kdemain( int argc, char **argv ) |