summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/apps/textedit/textedit.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/core/apps/textedit/textedit.cpp b/core/apps/textedit/textedit.cpp
index 797c61b..5edf102 100644
--- a/core/apps/textedit/textedit.cpp
+++ b/core/apps/textedit/textedit.cpp
@@ -1175,5 +1175,6 @@ if(featureAutoSave)
void TextEdit::gotoLine() {
-
+ if( editor->length() < 1)
+ return;
QWidget *d = QApplication::desktop();
gotoEdit = new QLineEdit( 0, "Goto line");
@@ -1188,4 +1189,5 @@ void TextEdit::doGoto() {
QString number = gotoEdit->text();
gotoEdit->hide();
+
if(gotoEdit) {
delete gotoEdit;
@@ -1195,5 +1197,5 @@ void TextEdit::doGoto() {
bool ok;
int lineNumber = number.toInt(&ok, 10);
- if(editor->numLines() < lineNumber)
+ if( editor->numLines() < lineNumber)
QMessageBox::message(tr("Text Edit"),tr("Not enough lines"));
else