diff options
Diffstat (limited to 'libksirtet/base/inter.cpp')
-rw-r--r-- | libksirtet/base/inter.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libksirtet/base/inter.cpp b/libksirtet/base/inter.cpp new file mode 100644 index 00000000..4f40b63f --- /dev/null +++ b/libksirtet/base/inter.cpp @@ -0,0 +1,15 @@ +#include "inter.h" + +#include <kexthighscore.h> + + +void BaseInterface::showHighscores(QWidget *parent) +{ + if ( !_isPaused() ) _pause(); + _showHighscores(parent); +} + +void BaseInterface::_showHighscores(QWidget *parent) +{ + KExtHighscore::show(parent); +} |