blob: c573ef78c7f767aa3faaf655e36675393ad3e302 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "inter.h"
#include <kexthighscore.h>
void BaseInterface::showHighscores(TQWidget *tqparent)
{
if ( !_isPaused() ) _pause();
_showHighscores(tqparent);
}
void BaseInterface::_showHighscores(TQWidget *tqparent)
{
KExtHighscore::show(tqparent);
}
|