From 9ee5295d934e0876dfe0b7e0a4ee05012c491f91 Mon Sep 17 00:00:00 2001 From: llornkcor Date: Sun, 22 Dec 2002 16:22:55 +0000 Subject: void functions cant return a bool value --- (limited to 'noncore/apps/tinykate/libkate/document') 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) if (!fileInfo->exists() || !fileInfo->isReadable()) { qDebug("File doesn't exit or couldn't be read"); - return false; + return ; } buffer->clear(); @@ -323,7 +323,7 @@ void KateDocument::openURL(const QString &filename) emit fileNameChanged(); - return true; + return ; } bool KateDocument::saveFile() @@ -393,7 +393,7 @@ void KateDocument::insertLine( const QString &str, int l ) { void KateDocument::insert_Line(const QString& s,int line, bool update) { - kdDebug(13020)<<"KateDocument::insertLine "<append(s.unicode(),s.length()); buffer->insertLine(line,TL); -- cgit v0.9.0.2