summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-reader/version.cpp
Unidiff
Diffstat (limited to 'noncore/apps/opie-reader/version.cpp') (more/less context) (ignore 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,7 +1,9 @@
1#include "version.h" 1#include "version.h"
2#include "names.h"
3#include <qmessagebox.h>
2 4
3bool CheckVersion(int& major, int& bkmktype, char& minor) 5bool CheckVersion(int& major, int& bkmktype, char& minor)
4{ 6{
5 if ( 7 if (
6 (major != MAJOR) 8 (major != MAJOR)
7 || 9 ||
@@ -10,27 +12,17 @@ bool CheckVersion(int& major, int& bkmktype, char& minor)
10 (minor != MINOR) 12 (minor != MINOR)
11 ) 13 )
12 { 14 {
13 major = MAJOR; 15 major = MAJOR;
14 bkmktype = BKMKTYPE; 16 bkmktype = BKMKTYPE;
15 minor = MINOR; 17 minor = MINOR;
16/* 18
17 QMessageBox::warning(NULL, PROGNAME, 19 QMessageBox::warning(NULL, PROGNAME,
18 "This is the first time that you have\n" 20 "New Features in this version\n\n\n"
19 "run this version of OpieReader.\n\n" 21 "Relative margin settings\n"
20 "There are two new icons visible at\n" 22 "Cyrillic hyphenation");
21 "the left end of the toolbar. The left\n"
22 "one brings up the menus, the next\n"
23 "one brings up the settings dialog.\n\n"
24 "Start by tapping the settings icon\n"
25 "and selecting the Buttons tab to\n"
26 "make sure that the buttons are\n"
27 "mapped as you expect\n\n"
28 "Next go to Settings/Toolbars via the\n"
29 "menu icon to set up your toolbars.");
30*/
31 return true; 23 return true;
32 } 24 }
33 else 25 else
34 { 26 {
35 return false; 27 return false;
36 } 28 }