summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-reader/version.cpp
Side-by-side diff
Diffstat (limited to 'noncore/apps/opie-reader/version.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/opie-reader/version.cpp20
1 files changed, 6 insertions, 14 deletions
diff --git a/noncore/apps/opie-reader/version.cpp b/noncore/apps/opie-reader/version.cpp
index 864e4c1..9d92abe 100644
--- a/noncore/apps/opie-reader/version.cpp
+++ b/noncore/apps/opie-reader/version.cpp
@@ -1,4 +1,6 @@
#include "version.h"
+#include "names.h"
+#include <qmessagebox.h>
bool CheckVersion(int& major, int& bkmktype, char& minor)
{
@@ -13,21 +15,11 @@ bool CheckVersion(int& major, int& bkmktype, char& minor)
major = MAJOR;
bkmktype = BKMKTYPE;
minor = MINOR;
-/*
+
QMessageBox::warning(NULL, PROGNAME,
- "This is the first time that you have\n"
- "run this version of OpieReader.\n\n"
- "There are two new icons visible at\n"
- "the left end of the toolbar. The left\n"
- "one brings up the menus, the next\n"
- "one brings up the settings dialog.\n\n"
- "Start by tapping the settings icon\n"
- "and selecting the Buttons tab to\n"
- "make sure that the buttons are\n"
- "mapped as you expect\n\n"
- "Next go to Settings/Toolbars via the\n"
- "menu icon to set up your toolbars.");
-*/
+ "New Features in this version\n\n\n"
+ "Relative margin settings\n"
+ "Cyrillic hyphenation");
return true;
}
else