author | zecke <zecke> | 2003-02-11 17:49:47 (UTC) |
---|---|---|
committer | zecke <zecke> | 2003-02-11 17:49:47 (UTC) |
commit | 613ae8a0a9c82dea1332651ba4f4a8e2f06eee0b (patch) (unidiff) | |
tree | 46fd1cb0033e5d2aed86ba4e929afa337bae08be | |
parent | f84b2b2bced083c3664099d5ae99e4732388812e (diff) | |
download | opie-613ae8a0a9c82dea1332651ba4f4a8e2f06eee0b.zip opie-613ae8a0a9c82dea1332651ba4f4a8e2f06eee0b.tar.gz opie-613ae8a0a9c82dea1332651ba4f4a8e2f06eee0b.tar.bz2 |
do not allow to open directories...
-rw-r--r-- | core/apps/textedit/textedit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/apps/textedit/textedit.cpp b/core/apps/textedit/textedit.cpp index 9ef423c..4cf1b07 100644 --- a/core/apps/textedit/textedit.cpp +++ b/core/apps/textedit/textedit.cpp | |||
@@ -637,7 +637,7 @@ void TextEdit::fileOpen() { | |||
637 | QString str = OFileDialog::getOpenFileName( 2, | 637 | QString str = OFileDialog::getOpenFileName( 2, |
638 | QPEApplication::documentDir(), | 638 | QPEApplication::documentDir(), |
639 | QString::null, map); | 639 | QString::null, map); |
640 | if( QFile(str).exists()) | 640 | if( QFile(str).exists() && !QFileInfo(str).isDir() ) |
641 | openFile( str ); | 641 | openFile( str ); |
642 | else | 642 | else |
643 | updateCaption(); | 643 | updateCaption(); |