author | llornkcor <llornkcor> | 2002-12-22 16:22:55 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-12-22 16:22:55 (UTC) |
commit | 9ee5295d934e0876dfe0b7e0a4ee05012c491f91 (patch) (unidiff) | |
tree | 1b89569cb70f8b671e4031d5f5303e1cef0ed321 | |
parent | 043abeb16589fa2aaa0881d2781bb46fa99007b6 (diff) | |
download | opie-9ee5295d934e0876dfe0b7e0a4ee05012c491f91.zip opie-9ee5295d934e0876dfe0b7e0a4ee05012c491f91.tar.gz opie-9ee5295d934e0876dfe0b7e0a4ee05012c491f91.tar.bz2 |
void functions cant return a bool value
-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 | |||
@@ -300,7 +300,7 @@ void KateDocument::openURL(const QString &filename) | |||
300 | if (!fileInfo->exists() || !fileInfo->isReadable()) | 300 | if (!fileInfo->exists() || !fileInfo->isReadable()) |
301 | { | 301 | { |
302 | qDebug("File doesn't exit or couldn't be read"); | 302 | qDebug("File doesn't exit or couldn't be read"); |
303 | return false; | 303 | return ; |
304 | } | 304 | } |
305 | 305 | ||
306 | buffer->clear(); | 306 | buffer->clear(); |
@@ -323,7 +323,7 @@ void KateDocument::openURL(const QString &filename) | |||
323 | 323 | ||
324 | emit fileNameChanged(); | 324 | emit fileNameChanged(); |
325 | 325 | ||
326 | return true; | 326 | return ; |
327 | } | 327 | } |
328 | 328 | ||
329 | bool KateDocument::saveFile() | 329 | bool KateDocument::saveFile() |