You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
765 B
41 lines
765 B
/****************************************************************************
|
|
|
|
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"
|