summaryrefslogtreecommitdiff
path: root/core/apps/textedit/textedit.cpp
Side-by-side diff
Diffstat (limited to 'core/apps/textedit/textedit.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/apps/textedit/textedit.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/apps/textedit/textedit.cpp b/core/apps/textedit/textedit.cpp
index 35f9d3c..209c5de 100644
--- a/core/apps/textedit/textedit.cpp
+++ b/core/apps/textedit/textedit.cpp
@@ -539,7 +539,7 @@ void TextEdit::fileOpen() {
map.insert(tr("Text"), text );
text << "*";
map.insert(tr("All"), text );
- QString str = OFileDialog::getOpenFileName( 2,"/", QString::null, map);
+ QString str = OFileDialog::getOpenFileName( 2, QPEApplication::documentDir(), QString::null, map);
if(!str.isEmpty() )
openFile( str );
@@ -814,7 +814,7 @@ bool TextEdit::saveAs() {
text << "*";
map.insert(tr("All"), text );
- QString str = OFileDialog::getSaveFileName( 2,"/", QString::null, map);
+ QString str = OFileDialog::getSaveFileName( 2,QPEApplication::documentDir(), QString::null, map);
if(!str.isEmpty() ) {
QString fileNm=str;