diff options
Diffstat (limited to 'tdeprint')
-rw-r--r-- | tdeprint/kjobviewer/main.cpp | 4 | ||||
-rw-r--r-- | tdeprint/kprinter/main.cpp | 4 | ||||
-rw-r--r-- | tdeprint/tdeprintfax/main.cpp | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/tdeprint/kjobviewer/main.cpp b/tdeprint/kjobviewer/main.cpp index a0671e5bc..59bf0e1c0 100644 --- a/tdeprint/kjobviewer/main.cpp +++ b/tdeprint/kjobviewer/main.cpp @@ -25,11 +25,11 @@ #include <klocale.h> #include <stdlib.h> -static KCmdLineOptions options[] = { +static TDECmdLineOptions options[] = { { "d <printer-name>", I18N_NOOP("The printer for which jobs are requested"), 0 }, { "noshow", I18N_NOOP("Show job viewer at startup"), 0}, { "all", I18N_NOOP("Show jobs for all printers"), 0}, - KCmdLineLastOption + TDECmdLineLastOption }; diff --git a/tdeprint/kprinter/main.cpp b/tdeprint/kprinter/main.cpp index 7381f53b9..a7694638e 100644 --- a/tdeprint/kprinter/main.cpp +++ b/tdeprint/kprinter/main.cpp @@ -24,7 +24,7 @@ #include <kcmdlineargs.h> #include <klocale.h> -static KCmdLineOptions options[] = +static TDECmdLineOptions options[] = { { "c", I18N_NOOP("Make an internal copy of the files to print"), 0}, { "P", 0, 0 }, @@ -39,7 +39,7 @@ static KCmdLineOptions options[] = { "stdin", I18N_NOOP("Allow printing from STDIN" ), 0}, { "nodialog", I18N_NOOP("Do not show the print dialog (print directly)"), 0}, { "+file(s)", I18N_NOOP("Files to load" ), 0}, - KCmdLineLastOption + TDECmdLineLastOption }; extern "C" int KDE_EXPORT kdemain(int argc, char *argv[]) diff --git a/tdeprint/tdeprintfax/main.cpp b/tdeprint/tdeprintfax/main.cpp index 82a07e97d..cdf7607c4 100644 --- a/tdeprint/tdeprintfax/main.cpp +++ b/tdeprint/tdeprintfax/main.cpp @@ -34,13 +34,13 @@ static const char description[] = // INSERT A DESCRIPTION FOR YOUR APPLICATION HERE -static KCmdLineOptions options[] = +static TDECmdLineOptions options[] = { { "phone ", I18N_NOOP("Phone number to fax to"), 0 }, { "immediate", I18N_NOOP("Send fax immediately"), 0 }, { "batch", I18N_NOOP("Exit after sending"), 0 }, { "+[file]", I18N_NOOP("File to fax (added to the file list)"), 0 }, - KCmdLineLastOption + TDECmdLineLastOption // INSERT YOUR COMMANDLINE OPTIONS HERE }; |