summaryrefslogtreecommitdiffstats
path: root/chalk/ui/kis_dlg_preferences.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chalk/ui/kis_dlg_preferences.cc')
-rw-r--r--chalk/ui/kis_dlg_preferences.cc26
1 files changed, 13 insertions, 13 deletions
diff --git a/chalk/ui/kis_dlg_preferences.cc b/chalk/ui/kis_dlg_preferences.cc
index 941e033e..a19edebe 100644
--- a/chalk/ui/kis_dlg_preferences.cc
+++ b/chalk/ui/kis_dlg_preferences.cc
@@ -108,8 +108,8 @@ float GeneralTab::dockerFontSize()
//---------------------------------------------------------------------------------------------------
-ColorSettingsTab::ColorSettingsTab(TQWidget *tqparent, const char *name )
- : TQWidget(tqparent, name)
+ColorSettingsTab::ColorSettingsTab(TQWidget *parent, const char *name )
+ : TQWidget(parent, name)
{
// XXX: Make sure only profiles that fit the specified color model
// are shown in the profile combos
@@ -195,8 +195,8 @@ void ColorSettingsTab::refillPrintProfiles(const KisID & s)
//---------------------------------------------------------------------------------------------------
-PerformanceTab::PerformanceTab(TQWidget *tqparent, const char *name )
- : WdgPerformanceSettings(tqparent, name)
+PerformanceTab::PerformanceTab(TQWidget *parent, const char *name )
+ : WdgPerformanceSettings(parent, name)
{
// XXX: Make sure only profiles that fit the specified color model
// are shown in the profile combos
@@ -216,8 +216,8 @@ void PerformanceTab::setDefault()
//---------------------------------------------------------------------------------------------------
-TabletSettingsTab::TabletSettingsTab( TQWidget *tqparent, const char *name)
- : WdgTabletSettings( tqparent, name )
+TabletSettingsTab::TabletSettingsTab( TQWidget *parent, const char *name)
+ : WdgTabletSettings( parent, name )
{
#ifdef EXTENDED_X11_TABLET_SUPPORT
initTabletDevices();
@@ -380,8 +380,8 @@ TQ_INT32 TabletSettingsTab::DeviceSettings::serialNumberAxis() const
}
TabletSettingsTab::TabletDeviceSettingsDialog::TabletDeviceSettingsDialog(const TQString& deviceName, DeviceSettings settings,
- TQWidget *tqparent, const char *name)
- : super(tqparent, name, true, "", Ok | Cancel)
+ TQWidget *parent, const char *name)
+ : super(parent, name, true, "", Ok | Cancel)
{
setCaption(i18n("Configure %1").tqarg(deviceName));
@@ -611,8 +611,8 @@ void TabletSettingsTab::applyTabletDeviceSettings()
//---------------------------------------------------------------------------------------------------
-DisplaySettingsTab::DisplaySettingsTab( TQWidget *tqparent, const char *name)
- : WdgDisplaySettings( tqparent, name )
+DisplaySettingsTab::DisplaySettingsTab( TQWidget *parent, const char *name)
+ : WdgDisplaySettings( parent, name )
{
#ifdef HAVE_GL
KisConfig cfg;
@@ -646,7 +646,7 @@ void DisplaySettingsTab::slotUseOpenGLToggled(bool /*isChecked*/)
}
//---------------------------------------------------------------------------------------------------
-GridSettingsTab::GridSettingsTab(TQWidget* tqparent) : WdgGridSettingsBase(tqparent)
+GridSettingsTab::GridSettingsTab(TQWidget* parent) : WdgGridSettingsBase(parent)
{
KisConfig cfg;
selectMainStyle->setCurrentItem(cfg.getGridMainStyle());
@@ -723,8 +723,8 @@ void GridSettingsTab::linkSpacingToggled(bool b)
//---------------------------------------------------------------------------------------------------
-PreferencesDialog::PreferencesDialog( TQWidget* tqparent, const char* name )
- : KDialogBase( IconList, i18n("Preferences"), Ok | Cancel | Help | Default /*| Apply*/, Ok, tqparent, name, true, true )
+PreferencesDialog::PreferencesDialog( TQWidget* parent, const char* name )
+ : KDialogBase( IconList, i18n("Preferences"), Ok | Cancel | Help | Default /*| Apply*/, Ok, parent, name, true, true )
{
TQVBox *vbox;