summaryrefslogtreecommitdiffstats
path: root/src/sources/labelsourcePrefs.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
commit670adfafbbf772ab10789ff03d6d0c515a2e3468 (patch)
tree71fb1f08ff3102898753642d0831bda87b2673e5 /src/sources/labelsourcePrefs.cpp
parent383adc283801b6238d8acfc750890613a63f8060 (diff)
downloadkima-670adfafbbf772ab10789ff03d6d0c515a2e3468.tar.gz
kima-670adfafbbf772ab10789ff03d6d0c515a2e3468.zip
Remove the tq in front of these incorrectly TQt4-converted methods/data members:
tqrepaint[...] tqinvalidate[...] tqparent[...] tqmask[...] tqlayout[...] tqalignment[...] git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kima@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/sources/labelsourcePrefs.cpp')
-rw-r--r--src/sources/labelsourcePrefs.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/sources/labelsourcePrefs.cpp b/src/sources/labelsourcePrefs.cpp
index cd7eb47..4ff75fc 100644
--- a/src/sources/labelsourcePrefs.cpp
+++ b/src/sources/labelsourcePrefs.cpp
@@ -66,11 +66,11 @@ LabelSourcePrefs::LabelSourcePrefs( TQWidget* tqparent, const char* name, WFlags
tqlayout18 = new TQHBoxLayout( 0, 0, 6, "tqlayout18");
- tqalignmentLabel = new TQLabel( defaultSourcePrefsFrame, "tqalignmentLabel" );
- tqlayout18->addWidget( tqalignmentLabel );
+ alignmentLabel = new TQLabel( defaultSourcePrefsFrame, "alignmentLabel" );
+ tqlayout18->addWidget( alignmentLabel );
- tqalignmentComboBox = new TQComboBox( FALSE, defaultSourcePrefsFrame, "tqalignmentComboBox" );
- tqlayout18->addWidget( tqalignmentComboBox );
+ alignmentComboBox = new TQComboBox( FALSE, defaultSourcePrefsFrame, "alignmentComboBox" );
+ tqlayout18->addWidget( alignmentComboBox );
spacer2 = new TQSpacerItem( 350, 20, TQSizePolicy::Expanding, TQSizePolicy::Minimum );
tqlayout18->addItem( spacer2 );
defaultSourcePrefsFrameLayout->addLayout( tqlayout18 );
@@ -100,11 +100,11 @@ void LabelSourcePrefs::languageChange()
colorLabel->setText( tr2i18n( "Foreground color:" ) );
colorButton->setText( TQString() );
fontLabel->setText( tr2i18n( "Font:" ) );
- tqalignmentLabel->setText( tr2i18n( "Alignment:" ) );
- tqalignmentComboBox->clear();
- tqalignmentComboBox->insertItem( tr2i18n( "Left" ) );
- tqalignmentComboBox->insertItem( tr2i18n( "Center" ) );
- tqalignmentComboBox->insertItem( tr2i18n( "Right" ) );
+ alignmentLabel->setText( tr2i18n( "Alignment:" ) );
+ alignmentComboBox->clear();
+ alignmentComboBox->insertItem( tr2i18n( "Left" ) );
+ alignmentComboBox->insertItem( tr2i18n( "Center" ) );
+ alignmentComboBox->insertItem( tr2i18n( "Right" ) );
}
#include "labelsourcePrefs.moc"