diff options
Diffstat (limited to 'lib/kofficecore')
-rw-r--r-- | lib/kofficecore/DESIGN | 2 | ||||
-rw-r--r-- | lib/kofficecore/KoApplication.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/kofficecore/DESIGN b/lib/kofficecore/DESIGN index bc5d16cd4..2a04e9f5c 100644 --- a/lib/kofficecore/DESIGN +++ b/lib/kofficecore/DESIGN @@ -24,7 +24,7 @@ which is used to locate the application's own data Q: What is the "+[file]" option passed to TDECmdLineArgs? -A: KCmdLineOptions describe the TDECmdLineArgs. "+[file]" means that the +A: TDECmdLineOptions describe the TDECmdLineArgs. "+[file]" means that the command line arguments can be one or more file names, and that these arguments are optional. diff --git a/lib/kofficecore/KoApplication.cpp b/lib/kofficecore/KoApplication.cpp index d594e0a08..25fe00dc9 100644 --- a/lib/kofficecore/KoApplication.cpp +++ b/lib/kofficecore/KoApplication.cpp @@ -36,12 +36,12 @@ void tqt_generate_epsf( bool b ); -static const KCmdLineOptions options[]= +static const TDECmdLineOptions options[]= { {"print", I18N_NOOP("Only print and exit"),0}, {"template", I18N_NOOP("Open a new document with a template"), 0}, {"dpi <dpiX,dpiY>", I18N_NOOP("Override display DPI"), 0}, - KCmdLineLastOption + TDECmdLineLastOption }; bool KoApplication::m_starting = true; |