author | llornkcor <llornkcor> | 2002-12-26 04:27:24 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-12-26 04:27:24 (UTC) |
commit | ec49b87e16b1a198847bd2511ebdccb5fdd3b2c5 (patch) (unidiff) | |
tree | 8708fc4a5374b8e3b95b40323c80b88bfe46846f | |
parent | df79efd854ebb22046e98b9076d31e94e2245ab2 (diff) | |
download | opie-ec49b87e16b1a198847bd2511ebdccb5fdd3b2c5.zip opie-ec49b87e16b1a198847bd2511ebdccb5fdd3b2c5.tar.gz opie-ec49b87e16b1a198847bd2511ebdccb5fdd3b2c5.tar.bz2 |
small fix for setting the directory in getOpenFileName, so it will return the fullpath
-rw-r--r-- | noncore/apps/tinykate/tinykate.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/noncore/apps/tinykate/tinykate.cpp b/noncore/apps/tinykate/tinykate.cpp index 51afd31..6164fa5 100644 --- a/noncore/apps/tinykate/tinykate.cpp +++ b/noncore/apps/tinykate/tinykate.cpp | |||
@@ -151,8 +151,9 @@ TinyKate::TinyKate( QWidget *parent, const char *name, WFlags f) : | |||
151 | 151 | ||
152 | void TinyKate::slotOpen( ) | 152 | void TinyKate::slotOpen( ) |
153 | { | 153 | { |
154 | QString filename=OFileDialog::getOpenFileName(OFileSelector::EXTENDED_ALL); | 154 | QString filename = OFileDialog::getOpenFileName( OFileSelector::EXTENDED_ALL, |
155 | if (!filename.isEmpty()) { | 155 | QPEApplication::documentDir()); |
156 | if (!filename.isEmpty()) { | ||
156 | open(filename); | 157 | open(filename); |
157 | } | 158 | } |
158 | } | 159 | } |
@@ -167,7 +168,7 @@ void TinyKate::open(const QString & filename) | |||
167 | qDebug(filename); | 168 | qDebug(filename); |
168 | 169 | ||
169 | kd->setDocName( filenamed); | 170 | kd->setDocName( filenamed); |
170 | kd->open(filename); | 171 | kd->open( filename ); |
171 | viewCount++; | 172 | viewCount++; |
172 | } | 173 | } |
173 | 174 | ||
@@ -240,7 +241,8 @@ void TinyKate::slotSaveAs() { | |||
240 | if (currentView==0) return; | 241 | if (currentView==0) return; |
241 | KateDocument *kd = (KateDocument*) currentView->document(); | 242 | KateDocument *kd = (KateDocument*) currentView->document(); |
242 | 243 | ||
243 | QString filename=OFileDialog::getSaveFileName(OFileSelector::EXTENDED_ALL); | 244 | QString filename=OFileDialog::getSaveFileName(OFileSelector::EXTENDED_ALL, |
245 | QPEApplication::documentDir()); | ||
244 | if (!filename.isEmpty()) { | 246 | if (!filename.isEmpty()) { |
245 | qDebug("saving file "+filename); | 247 | qDebug("saving file "+filename); |
246 | QFileInfo fi(filename); | 248 | QFileInfo fi(filename); |