diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:56:11 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:56:11 -0600 |
commit | 0b46312b4c5d893a6e0c29e354038bbdc5a15fdd (patch) | |
tree | 0a9819d1f6fa2690e0819c97e4bcb9a87f0d397b /src/sources/labelsourcePrefs.cpp | |
parent | 6981c239dedc72969f6f539afeef646a19c867c0 (diff) | |
download | kima-0b46312b4c5d893a6e0c29e354038bbdc5a15fdd.tar.gz kima-0b46312b4c5d893a6e0c29e354038bbdc5a15fdd.zip |
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 6981c239dedc72969f6f539afeef646a19c867c0.
Diffstat (limited to 'src/sources/labelsourcePrefs.cpp')
-rw-r--r-- | src/sources/labelsourcePrefs.cpp | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/src/sources/labelsourcePrefs.cpp b/src/sources/labelsourcePrefs.cpp index 99a8470..db9b675 100644 --- a/src/sources/labelsourcePrefs.cpp +++ b/src/sources/labelsourcePrefs.cpp @@ -18,7 +18,7 @@ #include <kcolorbutton.h> #include <kfontrequester.h> #include <tqcombobox.h> -#include <layout.h> +#include <tqlayout.h> #include <tqtooltip.h> #include <tqwhatsthis.h> @@ -44,39 +44,39 @@ LabelSourcePrefs::LabelSourcePrefs( TQWidget* parent, const char* name, WFlags f taskbartitleLabel->setFont( taskbartitleLabel_font ); defaultSourcePrefsFrameLayout->addWidget( taskbartitleLabel ); - layout13 = new TQHBoxLayout( 0, 0, 6, "layout13"); + tqlayout13 = new TQHBoxLayout( 0, 0, 6, "tqlayout13"); colorLabel = new TQLabel( defaultSourcePrefsFrame, "colorLabel" ); - layout13->addWidget( colorLabel ); + tqlayout13->addWidget( colorLabel ); colorButton = new KColorButton( defaultSourcePrefsFrame, "colorButton" ); - layout13->addWidget( colorButton ); + tqlayout13->addWidget( colorButton ); spacer1 = new TQSpacerItem( 350, 20, TQSizePolicy::Expanding, TQSizePolicy::Minimum ); - layout13->addItem( spacer1 ); - defaultSourcePrefsFrameLayout->addLayout( layout13 ); + tqlayout13->addItem( spacer1 ); + defaultSourcePrefsFrameLayout->addLayout( tqlayout13 ); - layout17 = new TQHBoxLayout( 0, 0, 6, "layout17"); + tqlayout17 = new TQHBoxLayout( 0, 0, 6, "tqlayout17"); fontLabel = new TQLabel( defaultSourcePrefsFrame, "fontLabel" ); - layout17->addWidget( fontLabel ); + tqlayout17->addWidget( fontLabel ); fontRequester = new KFontRequester( defaultSourcePrefsFrame, "fontRequester" ); - layout17->addWidget( fontRequester ); - defaultSourcePrefsFrameLayout->addLayout( layout17 ); + tqlayout17->addWidget( fontRequester ); + defaultSourcePrefsFrameLayout->addLayout( tqlayout17 ); - layout18 = new TQHBoxLayout( 0, 0, 6, "layout18"); + tqlayout18 = new TQHBoxLayout( 0, 0, 6, "tqlayout18"); alignmentLabel = new TQLabel( defaultSourcePrefsFrame, "alignmentLabel" ); - layout18->addWidget( alignmentLabel ); + tqlayout18->addWidget( alignmentLabel ); alignmentComboBox = new TQComboBox( FALSE, defaultSourcePrefsFrame, "alignmentComboBox" ); - layout18->addWidget( alignmentComboBox ); + tqlayout18->addWidget( alignmentComboBox ); spacer2 = new TQSpacerItem( 350, 20, TQSizePolicy::Expanding, TQSizePolicy::Minimum ); - layout18->addItem( spacer2 ); - defaultSourcePrefsFrameLayout->addLayout( layout18 ); + tqlayout18->addItem( spacer2 ); + defaultSourcePrefsFrameLayout->addLayout( tqlayout18 ); LabelSourcePrefsLayout->addWidget( defaultSourcePrefsFrame ); languageChange(); - resize( TQSize(299, 135).expandedTo(minimumSizeHint()) ); + resize( TQSize(299, 135).expandedTo(tqminimumSizeHint()) ); clearWState( WState_Polished ); } |