summaryrefslogtreecommitdiffstats
path: root/sigmodr/ScriptWidget.cpp
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2008-11-25 17:06:04 -0500
committerBen Boeckel <MathStuf@gmail.com>2008-11-25 17:06:04 -0500
commit0350d36872d4ab01eba7a4890f0d24e5217b7e22 (patch)
tree5ea44a71a5e1c75337dc15f40d2ba93bc0822dc6 /sigmodr/ScriptWidget.cpp
parent519786d4e7f515f640dfdea22a13b487f5774550 (diff)
downloadsigen-0350d36872d4ab01eba7a4890f0d24e5217b7e22.tar.gz
sigen-0350d36872d4ab01eba7a4890f0d24e5217b7e22.tar.xz
sigen-0350d36872d4ab01eba7a4890f0d24e5217b7e22.zip
Better error text when KTE component not cfound
Diffstat (limited to 'sigmodr/ScriptWidget.cpp')
-rw-r--r--sigmodr/ScriptWidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sigmodr/ScriptWidget.cpp b/sigmodr/ScriptWidget.cpp
index 96cde63b..0150008c 100644
--- a/sigmodr/ScriptWidget.cpp
+++ b/sigmodr/ScriptWidget.cpp
@@ -85,7 +85,7 @@ Sigmodr::ScriptWidget::ScriptWidget(QWidget* parent, const Sigcore::Script& valu
}
else
{
- KMessageBox::information(this, "A KDE text-editor component could not be found;\nplease check your KDE installation.\n\nEnhanced editing will not be used.", "Enhanced editor not found", "kte-component");
+ KMessageBox::information(this, "A KDE text-editor component could not be found.\nPlease check your KDE installation.\n\nEnhanced editing will not be used.", "KDE editor component not found", "kte-component");
m_simpleEdit = new KTextEdit(m_value.script(), this);
m_simpleEdit->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Expanding);
m_simpleEdit->setMinimumHeight(300);