Make the fact that the time is shown in hours and minutes more explicit.
[kdegames.git] / kgoldrunner / BUGS
blobc866690d7aafb4ba66664be66b9d620f9da2c2ad
1 KGoldrunner v2.0 - Known Problems
2 ---------------------------------
4 1.  Development of the KDE 1 version of KGoldrunner has been discontinued.
5     There is still a tarball for it on "apps.kde.com" under "kgoldrunner".
7 2.  Now that KGoldrunner v2.0 has been re-written as a KDE 3 application
8     it is no longer portable to non-KDE systems, however a portable
9     (non-KDE) version of KGoldrunner, based on Qt 3, has been written
10     and is currently under test.
12 3.  KGoldrunner 2.0 is not designed to work with KDE 2.  It has been tested with
13     KDE 3.1.1 and Qt 3.1.1.
15 4.  In KGoldrunner 2.0, the KDE library produces the following error message
16     occasionally when KDialogbase or KMessageBox is run:
18           WARNING: KDE detected X Error: BadMatch (invalid parameter attributes)
19           \x08 Major opcode:  *
21     This apppears to be harmless, i.e. all the desired dialog entries are
22     received by the application and the messages appear on the screen.  One
23     way the X error message can be forced to appear is to run "exec()" twice on
24     one dialog object, e.g, as in a data-entry validation loop:
26           while (dialogName->exec() == QDialog::Accepted) {
27               if validation fails
28                   issue error message;
29                   continue;
30               else
31                   break;
32           }
34     Maybe this is a bug in KDE 3.1.1 and maybe it is already fixed in later KDE.
35     It happens if you do "exec()" twice on an empty KDialogbase object (i.e. one
36     with just OK and Cancel buttons and a caption), so I don't think KGoldrunner
37     is responsible.  Also, the "while ... exec()" loop works fine with QDialog
38     objects and always has.