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

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