Changeset View
Changeset View
Standalone View
Standalone View
src/kbookmarkmerger.cpp
| Show All 31 Lines | |||||
| 32 | 32 | | |||
| 33 | #include <QDir> | 33 | #include <QDir> | ||
| 34 | #include <qdom.h> | 34 | #include <qdom.h> | ||
| 35 | #include <QApplication> | 35 | #include <QApplication> | ||
| 36 | #include <QCommandLineParser> | 36 | #include <QCommandLineParser> | ||
| 37 | #include <QCommandLineOption> | 37 | #include <QCommandLineOption> | ||
| 38 | #include <KLocalizedString> | 38 | #include <KLocalizedString> | ||
| 39 | 39 | | |||
| 40 | #include "keditbookmarks_version.h" | ||||
| 41 | | ||||
| 40 | int main( int argc, char**argv ) | 42 | int main( int argc, char**argv ) | ||
| 41 | { | 43 | { | ||
| 42 | QApplication app(argc, argv); | 44 | QApplication app(argc, argv); | ||
| 43 | 45 | | |||
| 44 | KLocalizedString::setApplicationDomain("keditbookmarks"); | 46 | KLocalizedString::setApplicationDomain("keditbookmarks"); | ||
| 45 | 47 | | |||
| 46 | KAboutData aboutData( QStringLiteral("kbookmarkmerger"), | 48 | KAboutData aboutData( QStringLiteral("kbookmarkmerger"), | ||
| 47 | i18n( "KBookmarkMerger" ), | 49 | i18n( "KBookmarkMerger" ), | ||
| 48 | QStringLiteral("1.0"), | 50 | QStringLiteral(KEDITBOOKMARKS_VERSION_STRING), | ||
| 49 | i18n("Merges bookmarks installed by 3rd parties into the user's bookmarks"), | 51 | i18n("Merges bookmarks installed by 3rd parties into the user's bookmarks"), | ||
| 50 | KAboutLicense::BSDL, | 52 | KAboutLicense::BSDL, | ||
| 51 | i18n("Copyright © 2005 Frerich Raabe") ); | 53 | i18n("Copyright © 2005 Frerich Raabe") ); | ||
| 52 | aboutData.addAuthor( i18n("Frerich Raabe"), i18n("Original author"), | 54 | aboutData.addAuthor( i18n("Frerich Raabe"), i18n("Original author"), | ||
| 53 | QStringLiteral("raabe@kde.org") ); | 55 | QStringLiteral("raabe@kde.org") ); | ||
| 54 | 56 | | |||
| 55 | KAboutData::setApplicationData(aboutData); | 57 | KAboutData::setApplicationData(aboutData); | ||
| 56 | 58 | | |||
| ▲ Show 20 Lines • Show All 64 Lines • Show Last 20 Lines | |||||