diff options
author | Timothy Pearson <[email protected]> | 2013-02-06 19:39:50 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-02-06 19:39:50 -0600 |
commit | e47549c5bf905e8fca2af0a0b2899f65adebbc29 (patch) | |
tree | 67ec2f53eaca242d6901396ae656249819763cf7 | |
parent | e07fc3cb5dfe3f7dd4cc36b3bbd4064e86a1be15 (diff) | |
download | tellico-e47549c5bf905e8fca2af0a0b2899f65adebbc29.tar.gz tellico-e47549c5bf905e8fca2af0a0b2899f65adebbc29.zip |
Rename KCmd to avoid conflicts with KDE4
-rw-r--r-- | src/main.cpp | 4 |
1 files 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 <filename> as a bibtex file"), 0 }, { "mods", I18N_NOOP("Import <filename> as a MODS file"), 0 }, { "ris", I18N_NOOP("Import <filename> as a RIS file"), 0 }, { "+[filename]", I18N_NOOP("File to open"), 0 }, - KCmdLineLastOption + TDECmdLineLastOption }; } |