summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-14 00:15:32 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-14 00:15:32 -0500
commitd75a2aa38c793d68f2943f01dde06968ebaead67 (patch)
tree8e30129cd550519381c65527bda04e1db168c71e
parent2fb1d78204906a83de5a5bd30516c20760ae713d (diff)
downloadtellico-d75a2aa38c793d68f2943f01dde06968ebaead67.tar.gz
tellico-d75a2aa38c793d68f2943f01dde06968ebaead67.zip
Bring centrejust, leftjust, rightjust, text_left, text_right, text_bold, text_italic, text_under, text_strike, and spellcheck icons into XDG compliance
-rw-r--r--src/gui/parafieldwidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/parafieldwidget.cpp b/src/gui/parafieldwidget.cpp
index c03a28a..12444f0 100644
--- a/src/gui/parafieldwidget.cpp
+++ b/src/gui/parafieldwidget.cpp
@@ -24,7 +24,7 @@ ParaFieldWidget::ParaFieldWidget(Data::FieldPtr field_, TQWidget* parent_, const
m_textEdit = new KTextEdit(this);
m_textEdit->setTextFormat(TQt::PlainText);
- if(field_->property(TQString::fromLatin1("spellcheck")) != Latin1Literal("false")) {
+ if(field_->property(TQString::fromLatin1("tools-check-spelling")) != Latin1Literal("false")) {
m_textEdit->setCheckSpellingEnabled(true);
}
connect(m_textEdit, TQT_SIGNAL(textChanged()), TQT_SIGNAL(modified()));