author | llornkcor <llornkcor> | 2002-12-22 17:30:50 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-12-22 17:30:50 (UTC) |
commit | a907eb4d3c6ca142dcab7889d8932ccb452bf07c (patch) (side-by-side diff) | |
tree | 985933c8c2dd1f49dee60c898b3b951f99f4eaf3 | |
parent | d7859bf6df42c36f87ecaa560754b3b3b3c2e78e (diff) | |
download | opie-a907eb4d3c6ca142dcab7889d8932ccb452bf07c.zip opie-a907eb4d3c6ca142dcab7889d8932ccb452bf07c.tar.gz opie-a907eb4d3c6ca142dcab7889d8932ccb452bf07c.tar.bz2 |
add fileName to tab instead of BLAH
-rw-r--r-- | noncore/apps/tinykate/tinykate.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/noncore/apps/tinykate/tinykate.cpp b/noncore/apps/tinykate/tinykate.cpp index f177e47..a823530 100644 --- a/noncore/apps/tinykate/tinykate.cpp +++ b/noncore/apps/tinykate/tinykate.cpp @@ -157,9 +157,10 @@ void TinyKate::slotOpen( ) void TinyKate::open(const QString & filename) { KateDocument *kd= new KateDocument(false, false, this,0,this); KTextEditor::View *kv; - tabwidget->addTab(kv=kd->createView(tabwidget,"bLAH"),"tinykate/tinykate","BLAH"); + QFileInfo fi(filename); + tabwidget->addTab(kv=kd->createView(tabwidget,"bLAH"),"tinykate/tinykate",fi.fileName()); qDebug(filename); kd->open(filename); viewCount++; } |