summaryrefslogtreecommitdiff
path: root/noncore
authorllornkcor <llornkcor>2002-12-26 04:14:13 (UTC)
committer llornkcor <llornkcor>2002-12-26 04:14:13 (UTC)
commitdf79efd854ebb22046e98b9076d31e94e2245ab2 (patch) (side-by-side diff)
tree0a1c06fb787e44a2750ebf59efdf453c09ea2bd7 /noncore
parente4e891190200cf26ba4bafcadca17f2473493276 (diff)
downloadopie-df79efd854ebb22046e98b9076d31e94e2245ab2.zip
opie-df79efd854ebb22046e98b9076d31e94e2245ab2.tar.gz
opie-df79efd854ebb22046e98b9076d31e94e2245ab2.tar.bz2
fix docname setting
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/tinykate/tinykate.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/noncore/apps/tinykate/tinykate.cpp b/noncore/apps/tinykate/tinykate.cpp
index c8c3b31..51afd31 100644
--- a/noncore/apps/tinykate/tinykate.cpp
+++ b/noncore/apps/tinykate/tinykate.cpp
@@ -162,8 +162,11 @@ void TinyKate::open(const QString & filename)
KateDocument *kd= new KateDocument(false, false, this,0,this);
KTextEditor::View *kv;
QFileInfo fi(filename);
- tabwidget->addTab(kv=kd->createView(tabwidget,"bLAH"),"tinykate/tinykate",fi.fileName());
+ QString filenamed = fi.fileName();
+ tabwidget->addTab(kv=kd->createView(tabwidget,"bLAH"),"tinykate/tinykate", filenamed );
qDebug(filename);
+
+ kd->setDocName( filenamed);
kd->open(filename);
viewCount++;
}