diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-06 00:54:43 -0600 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2012-06-02 19:04:47 +0200 |
commit | ab32d1dcfb2ee4c59ee3cfdc697adfb717ea91b9 (patch) | |
tree | f1579b1f398b3c8e19d8114e87dd2fef3b407651 /kate/part/kateschema.cpp | |
parent | c1a037c8d0250886e3e984d6171d798b5a60dc9d (diff) | |
download | tdelibs-ab32d1dcfb2ee4c59ee3cfdc697adfb717ea91b9.tar.gz tdelibs-ab32d1dcfb2ee4c59ee3cfdc697adfb717ea91b9.zip |
Rename tqsetAlignment to fix bindings
(cherry picked from commit b212a1de50010bf9f8ff93123281a6956291cdf2)
Diffstat (limited to 'kate/part/kateschema.cpp')
-rw-r--r-- | kate/part/kateschema.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kate/part/kateschema.cpp b/kate/part/kateschema.cpp index fb42ea72d..bd5f0861e 100644 --- a/kate/part/kateschema.cpp +++ b/kate/part/kateschema.cpp @@ -281,19 +281,19 @@ KateSchemaConfigColorTab::KateSchemaConfigColorTab( TQWidget *parent, const char b = new TQHBox (gbTextArea); b->setSpacing(KDialog::spacingHint()); label = new TQLabel( i18n("Normal text:"), b); - label->tqsetAlignment( AlignLeft|AlignVCenter); + label->setAlignment( AlignLeft|AlignVCenter); m_back = new KColorButton(b); b = new TQHBox (gbTextArea); b->setSpacing(KDialog::spacingHint()); label = new TQLabel( i18n("Selected text:"), b); - label->tqsetAlignment( AlignLeft|AlignVCenter); + label->setAlignment( AlignLeft|AlignVCenter); m_selected = new KColorButton(b); b = new TQHBox (gbTextArea); b->setSpacing(KDialog::spacingHint()); label = new TQLabel( i18n("Current line:"), b); - label->tqsetAlignment( AlignLeft|AlignVCenter); + label->setAlignment( AlignLeft|AlignVCenter); m_current = new KColorButton(b); // Markers from kdelibs/interfaces/ktextinterface/markinterface.h @@ -319,31 +319,31 @@ KateSchemaConfigColorTab::KateSchemaConfigColorTab( TQWidget *parent, const char b = new TQHBox (gbBorder); b->setSpacing(KDialog::spacingHint()); label = new TQLabel( i18n("Left border background:"), b); - label->tqsetAlignment( AlignLeft|AlignVCenter); + label->setAlignment( AlignLeft|AlignVCenter); m_iconborder = new KColorButton(b); b = new TQHBox (gbBorder); b->setSpacing(KDialog::spacingHint()); label = new TQLabel( i18n("Line numbers:"), b); - label->tqsetAlignment( AlignLeft|AlignVCenter); + label->setAlignment( AlignLeft|AlignVCenter); m_linenumber = new KColorButton(b); b = new TQHBox (gbBorder); b->setSpacing(KDialog::spacingHint()); label = new TQLabel( i18n("Bracket highlight:"), b); - label->tqsetAlignment( AlignLeft|AlignVCenter); + label->setAlignment( AlignLeft|AlignVCenter); m_bracket = new KColorButton(b); b = new TQHBox (gbBorder); b->setSpacing(KDialog::spacingHint()); label = new TQLabel( i18n("Word wrap markers:"), b); - label->tqsetAlignment( AlignLeft|AlignVCenter); + label->setAlignment( AlignLeft|AlignVCenter); m_wwmarker = new KColorButton(b); b = new TQHBox (gbBorder); b->setSpacing(KDialog::spacingHint()); label = new TQLabel( i18n("Tab markers:"), b); - label->tqsetAlignment( AlignLeft|AlignVCenter); + label->setAlignment( AlignLeft|AlignVCenter); m_tmarker = new KColorButton(b); blay->addWidget(gbBorder); |