-rw-r--r-- | noncore/apps/tinykate/libkate/document/katedocument.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/apps/tinykate/libkate/document/katedocument.cpp b/noncore/apps/tinykate/libkate/document/katedocument.cpp index 0d84bcf..10bc976 100644 --- a/noncore/apps/tinykate/libkate/document/katedocument.cpp +++ b/noncore/apps/tinykate/libkate/document/katedocument.cpp @@ -299,9 +299,9 @@ void KateDocument::openURL(const QString &filename) if (!fileInfo->exists() || !fileInfo->isReadable()) { qDebug("File doesn't exit or couldn't be read"); - return false; + return ; } buffer->clear(); #warning fixme @@ -322,9 +322,9 @@ void KateDocument::openURL(const QString &filename) updateViews(); emit fileNameChanged(); - return true; + return ; } bool KateDocument::saveFile() { |