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