compile fixes for new snapshot (remove some name arguments)

svn path=/trunk/KDE/kdebase/workspace/; revision=496151
icc-effect-5.14.5
Urs Wolfer 2006-01-09 21:34:47 +00:00
parent aa26860cdc
commit e664161f4d
2 changed files with 9 additions and 9 deletions

View File

@ -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 )
{
}

View File

@ -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();
};