diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-06 19:32:13 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-06 19:32:13 -0600 |
commit | 50adbb07763d50e09ab74379a6c3bb6e3b0b7c37 (patch) | |
tree | 238e7021b115d3150ddccd00ca170353275aee46 | |
parent | b3ff2ac060e73fe76f377c499907003cc7378a51 (diff) | |
download | gwenview-50adbb07763d50e09ab74379a6c3bb6e3b0b7c37.tar.gz gwenview-50adbb07763d50e09ab74379a6c3bb6e3b0b7c37.zip |
Rename KCmd to avoid conflicts with KDE4
-rw-r--r-- | src/app/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app/main.cpp b/src/app/main.cpp index 038c5c3..efde83c 100644 --- a/src/app/main.cpp +++ b/src/app/main.cpp @@ -33,14 +33,14 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. #include "mainwindow.h" namespace Gwenview { -static KCmdLineOptions options[] = { +static TDECmdLineOptions options[] = { { "f", I18N_NOOP("Start in fullscreen mode"), 0 }, { "filter-type <all,images,videos>", I18N_NOOP("Filter by file type"), 0 }, { "filter-name <pattern>", I18N_NOOP("Filter by file pattern (*.jpg, 01*...)"), 0 }, { "filter-from <date>", I18N_NOOP("Only show files newer or equal to <date>"), 0 }, { "filter-to <date>", I18N_NOOP("Only show files older or equal to <date>"), 0 }, { "+[file or folder]", I18N_NOOP("A starting file or folder"), 0 }, - KCmdLineLastOption + TDECmdLineLastOption }; static const char version[] = "1.4.2"; |