From 0350d36872d4ab01eba7a4890f0d24e5217b7e22 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Tue, 25 Nov 2008 17:06:04 -0500 Subject: Better error text when KTE component not cfound --- sigmodr/ScriptWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sigmodr/ScriptWidget.cpp') 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); -- cgit