summaryrefslogtreecommitdiffstats
path: root/libksirtet/base/inter.cpp
blob: 658e7c4787071b4f0df918fe643496e471a52763 (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 *parent)
{
    if ( !_isPaused() ) _pause();
    _showHighscores(parent);
}

void BaseInterface::_showHighscores(TQWidget *parent)
{
    KExtHighscore::show(parent);
}