compile fixes for new snapshot (remove some name arguments)
svn path=/trunk/KDE/kdebase/workspace/; revision=496151
This commit is contained in:
parent
aa26860cdc
commit
e664161f4d
2 changed files with 9 additions and 9 deletions
|
@ -47,8 +47,8 @@ namespace KWinInternal
|
|||
enable_##var->setWhatsThis( enableDesc ); \
|
||||
rule_##var->setWhatsThis( type##RuleDesc );
|
||||
|
||||
RulesWidget::RulesWidget( QWidget* parent, const char* name )
|
||||
: RulesWidgetBase( parent, name )
|
||||
RulesWidget::RulesWidget( QWidget* parent )
|
||||
: RulesWidgetBase( parent )
|
||||
, detect_dlg( NULL )
|
||||
{
|
||||
QString enableDesc =
|
||||
|
@ -728,8 +728,8 @@ void RulesDialog::accept()
|
|||
KDialogBase::accept();
|
||||
}
|
||||
|
||||
EditShortcut::EditShortcut( QWidget* parent, const char* name )
|
||||
: EditShortcutBase( parent, name )
|
||||
EditShortcut::EditShortcut( QWidget* parent )
|
||||
: EditShortcutBase( parent )
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -762,8 +762,8 @@ QString EditShortcutDialog::shortcut() const
|
|||
return widget->shortcut->text();
|
||||
}
|
||||
|
||||
ShortcutDialog::ShortcutDialog( const KShortcut& cut, QWidget* parent, const char* name )
|
||||
: KShortcutDialog( cut, false /*TODO???*/, parent, name )
|
||||
ShortcutDialog::ShortcutDialog( const KShortcut& cut, QWidget* parent )
|
||||
: KShortcutDialog( cut, false /*TODO???*/, parent )
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@ class RulesWidget
|
|||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
RulesWidget( QWidget* parent = NULL, const char* name = NULL );
|
||||
RulesWidget( QWidget* parent = NULL );
|
||||
void setRules( Rules* r );
|
||||
Rules* rules() const;
|
||||
bool finalCheck();
|
||||
|
@ -115,7 +115,7 @@ class EditShortcut
|
|||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
EditShortcut( QWidget* parent = NULL, const char* name = NULL );
|
||||
EditShortcut( QWidget* parent = NULL );
|
||||
protected:
|
||||
void editShortcut();
|
||||
void clearShortcut();
|
||||
|
@ -139,7 +139,7 @@ class ShortcutDialog
|
|||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
ShortcutDialog( const KShortcut& cut, QWidget* parent = NULL, const char* name = NULL );
|
||||
ShortcutDialog( const KShortcut& cut, QWidget* parent = NULL );
|
||||
virtual void accept();
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue