diff options
Diffstat (limited to 'src/sources/labelsourcePrefs.cpp')
-rw-r--r-- | src/sources/labelsourcePrefs.cpp | 18 |
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" |