summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/apps/textedit/textedit.cpp9
-rw-r--r--core/apps/textedit/textedit.h2
2 files changed, 8 insertions, 3 deletions
diff --git a/core/apps/textedit/textedit.cpp b/core/apps/textedit/textedit.cpp
index f56d5d3..1a1b186 100644
--- a/core/apps/textedit/textedit.cpp
+++ b/core/apps/textedit/textedit.cpp
@@ -374,5 +374,4 @@ TextEdit::TextEdit( QWidget *parent, const char *name, WFlags f )
searchBar->hide();
-
editor = new QpeEditor( this );
setCentralWidget( editor );
@@ -522,8 +521,13 @@ void TextEdit::fileOpen()
if(caption().left(1)=="*")
setCaption(caption().right(caption().length()-1));
+ doSearchBar();
+}
+
+void TextEdit::doSearchBar()
+{
Config cfg("TextEdit");
cfg.setGroup("View");
if(cfg.readEntry("SearchBar","Closed") != "Opened")
- searchBar->hide();
+ searchBar->hide();
}
@@ -850,4 +854,5 @@ void TextEdit::setDocument(const QString& fileref)
edited1=FALSE;
edited=TRUE;
+ doSearchBar();
}
diff --git a/core/apps/textedit/textedit.h b/core/apps/textedit/textedit.h
index a70b581..70cf068 100644
--- a/core/apps/textedit/textedit.h
+++ b/core/apps/textedit/textedit.h
@@ -62,5 +62,5 @@ public slots:
protected:
void closeEvent( QCloseEvent *e );
-
+ void doSearchBar();
private slots:
void setDocument(const QString&);