blob: feba07dd16e37b42eb554689d54eefad9e1f78a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
/****************************************************************************
KHotKeys
Copyright (C) 1999-2001 Lubos Lunak <l.lunak@kde.org>
Distributed under the terms of the GNU General Public License version 2.
****************************************************************************/
#define _INFO_TAB_CPP_
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "info_tab.h"
#include <tqpushbutton.h>
#include <tqlabel.h>
#include <tdelocale.h>
namespace KHotKeys
{
Info_tab::Info_tab( TQWidget* parent_P, const char* name_P )
: Info_tab_ui( parent_P, name_P )
{
clear_data();
}
void Info_tab::clear_data()
{
// "global" tab, not action specific, do nothing
}
} // namespace KHotKeys
#include "info_tab.moc"
|