From e47549c5bf905e8fca2af0a0b2899f65adebbc29 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Wed, 6 Feb 2013 19:39:50 -0600 Subject: [PATCH] Rename KCmd to avoid conflicts with KDE4 --- src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 0d8a9a0..b8f4690 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -23,13 +23,13 @@ namespace { static const char* description = I18N_NOOP("Tellico - a collection manager for TDE"); static const char* version = VERSION; - static KCmdLineOptions options[] = { + static TDECmdLineOptions options[] = { { "nofile", I18N_NOOP("Do not reopen the last open file"), 0 }, { "bibtex", I18N_NOOP("Import as a bibtex file"), 0 }, { "mods", I18N_NOOP("Import as a MODS file"), 0 }, { "ris", I18N_NOOP("Import as a RIS file"), 0 }, { "+[filename]", I18N_NOOP("File to open"), 0 }, - KCmdLineLastOption + TDECmdLineLastOption }; }