diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-24 11:36:24 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-24 11:36:24 -0600 |
commit | 039393e199a49b5158929668908f9cb1fe226484 (patch) | |
tree | d7aec29ab26866737b6786073bba888af62cb1bf /lib | |
parent | 2d6954f69caf63ed5057bd8e1405a65d7d970292 (diff) | |
download | koffice-039393e199a49b5158929668908f9cb1fe226484.tar.gz koffice-039393e199a49b5158929668908f9cb1fe226484.zip |
Rename a few stragglers
Diffstat (limited to 'lib')
-rw-r--r-- | lib/kofficeui/KoTemplateCreateDia.cpp | 2 | ||||
-rw-r--r-- | lib/koproperty/editoritem.cpp | 2 | ||||
-rw-r--r-- | lib/kotext/KoTextView.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/kofficeui/KoTemplateCreateDia.cpp b/lib/kofficeui/KoTemplateCreateDia.cpp index d2dc25f0..91684726 100644 --- a/lib/kofficeui/KoTemplateCreateDia.cpp +++ b/lib/kofficeui/KoTemplateCreateDia.cpp @@ -144,7 +144,7 @@ KoTemplateCreateDia::KoTemplateCreateDia( const TQCString &templateType, KInstan rightbox->addWidget(pixbox); TQVBoxLayout *pixlayout=new TQVBoxLayout(pixbox, KDialogBase::marginHint(), KDialogBase::spacingHint()); - pixtqlayout->addSpacing(pixbox->fontMetrics().height()/2); + pixlayout->addSpacing(pixbox->fontMetrics().height()/2); pixlayout->addStretch(1); d->m_default=new TQRadioButton(i18n("&Default"), pixbox); d->m_default->setChecked(true); diff --git a/lib/koproperty/editoritem.cpp b/lib/koproperty/editoritem.cpp index 1027d224..b378f93a 100644 --- a/lib/koproperty/editoritem.cpp +++ b/lib/koproperty/editoritem.cpp @@ -135,7 +135,7 @@ class GroupWidgetBase : public TQWidget TQStyle::StyleFlags flags = m_mouseDown ? TQStyle::Style_Down : TQStyle::Style_Default; kapp->style().tqdrawPrimitive(TQStyle::PE_HeaderSection, &p, r, palette().active(), flags); - paintListViewExpander(&p, this, r.height()+2, tqpalette().active(), isOpen()); + paintListViewExpander(&p, this, r.height()+2, palette().active(), isOpen()); if (!m_miniicon.isNull()) { p.drawPixmap(24, (r.height()-m_miniicon.height())/2, m_miniicon); } diff --git a/lib/kotext/KoTextView.cpp b/lib/kotext/KoTextView.cpp index 9733e123..cb8116c9 100644 --- a/lib/kotext/KoTextView.cpp +++ b/lib/kotext/KoTextView.cpp @@ -611,7 +611,7 @@ KoTextCursor KoTextView::selectWordUnderCursor( const KoTextCursor& cursor, int const bool isWordDelimiter = ch.isSpace() || ch.category() == TQChar::Punctuation_Open // e.g. '(' || ch.category() == TQChar::Punctuation_Close // e.g. ')' - || ch.category() == TQChar::Punctuation_Other // see http://www.fileformat.info/info/tqunicode/category/Po/list.htm + || ch.category() == TQChar::Punctuation_Other // see http://www.fileformat.info/info/unicode/category/Po/list.htm ; if( !beginFound && !isWordDelimiter ) |