summaryrefslogtreecommitdiff
path: root/noncore/apps/tinykate/libkate/document/katedocument.cpp
authorllornkcor <llornkcor>2002-12-22 16:22:55 (UTC)
committer llornkcor <llornkcor>2002-12-22 16:22:55 (UTC)
commit9ee5295d934e0876dfe0b7e0a4ee05012c491f91 (patch) (side-by-side diff)
tree1b89569cb70f8b671e4031d5f5303e1cef0ed321 /noncore/apps/tinykate/libkate/document/katedocument.cpp
parent043abeb16589fa2aaa0881d2781bb46fa99007b6 (diff)
downloadopie-9ee5295d934e0876dfe0b7e0a4ee05012c491f91.zip
opie-9ee5295d934e0876dfe0b7e0a4ee05012c491f91.tar.gz
opie-9ee5295d934e0876dfe0b7e0a4ee05012c491f91.tar.bz2
void functions cant return a bool value
Diffstat (limited to 'noncore/apps/tinykate/libkate/document/katedocument.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/tinykate/libkate/document/katedocument.cpp6
1 files changed, 3 insertions, 3 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
@@ -297,13 +297,13 @@ void KateDocument::openURL(const QString &filename)
fileInfo->setFile (m_file);
setMTime();
if (!fileInfo->exists() || !fileInfo->isReadable())
{
qDebug("File doesn't exit or couldn't be read");
- return false;
+ return ;
}
buffer->clear();
#warning fixme
// buffer->insertFile(0, m_file, KGlobal::charsets()->codecForName(myEncoding));
qDebug("Telling buffer to open file");
@@ -320,13 +320,13 @@ void KateDocument::openURL(const QString &filename)
updateLines();
updateViews();
emit fileNameChanged();
- return true;
+ return ;
}
bool KateDocument::saveFile()
{
QFile f( m_file );
if ( !f.open( IO_WriteOnly ) )
@@ -390,13 +390,13 @@ void KateDocument::replaceLine(const QString& s,int line)
void KateDocument::insertLine( const QString &str, int l ) {
insert_Line(str,l,true);
}
void KateDocument::insert_Line(const QString& s,int line, bool update)
{
- kdDebug(13020)<<"KateDocument::insertLine "<<s<<QString(" %1").arg(line)<<endl;
+ kdDebug(13020)<<"KateDocument::insertLine "<<s<<QString(" %1").arg(line)<<endl;
TextLine::Ptr TL=new TextLine();
TL->append(s.unicode(),s.length());
buffer->insertLine(line,TL);
if (update)
{
newDocGeometry=true;