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 /drkonqi | |
parent | 98eb308fc180d9bea71f448b262ab796353ac904 (diff) | |
download | tdebase-5e664c2e4a7b9dcaf2660f8db94a632d1021e2dd.tar.gz tdebase-5e664c2e4a7b9dcaf2660f8db94a632d1021e2dd.zip |
Rename KCmd to avoid conflicts with KDE4
Diffstat (limited to 'drkonqi')
-rw-r--r-- | drkonqi/crashtest.cpp | 4 | ||||
-rw-r--r-- | drkonqi/main.cpp | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/drkonqi/crashtest.cpp b/drkonqi/crashtest.cpp index 57f055420..19fee84b6 100644 --- a/drkonqi/crashtest.cpp +++ b/drkonqi/crashtest.cpp @@ -6,10 +6,10 @@ #include <stdio.h> #include <assert.h> -static KCmdLineOptions options[] = +static TDECmdLineOptions options[] = { { "+crash|malloc|div0|assert", "Type of crash.", 0 }, - KCmdLineLastOption + TDECmdLineLastOption }; enum CrashType { Crash, Malloc, Div0, Assert }; diff --git a/drkonqi/main.cpp b/drkonqi/main.cpp index e65c63632..c745381e7 100644 --- a/drkonqi/main.cpp +++ b/drkonqi/main.cpp @@ -42,7 +42,7 @@ static const char version[] = "1.0"; static const char description[] = I18N_NOOP( "TDE crash handler gives the user feedback if a program crashed" ); -static const KCmdLineOptions options[] = +static const TDECmdLineOptions options[] = { {"signal <number>", I18N_NOOP("The signal number that was caught"), 0}, {"appname <name>", I18N_NOOP("Name of the program"), 0}, @@ -54,7 +54,7 @@ static const KCmdLineOptions options[] = {"startupid <id>", I18N_NOOP("Startup ID of the program"), 0}, {"tdeinit", I18N_NOOP("The program was started by tdeinit"), 0}, {"safer", I18N_NOOP("Disable arbitrary disk access"), 0}, - KCmdLineLastOption + TDECmdLineLastOption }; int main( int argc, char* argv[] ) |