summaryrefslogtreecommitdiff
path: root/noncore
authorllornkcor <llornkcor>2002-12-22 17:30:50 (UTC)
committer llornkcor <llornkcor>2002-12-22 17:30:50 (UTC)
commita907eb4d3c6ca142dcab7889d8932ccb452bf07c (patch) (side-by-side diff)
tree985933c8c2dd1f49dee60c898b3b951f99f4eaf3 /noncore
parentd7859bf6df42c36f87ecaa560754b3b3b3c2e78e (diff)
downloadopie-a907eb4d3c6ca142dcab7889d8932ccb452bf07c.zip
opie-a907eb4d3c6ca142dcab7889d8932ccb452bf07c.tar.gz
opie-a907eb4d3c6ca142dcab7889d8932ccb452bf07c.tar.bz2
add fileName to tab instead of BLAH
Diffstat (limited to 'noncore') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/tinykate/tinykate.cpp3
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
@@ -155,13 +155,14 @@ 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++;
}
void TinyKate::slotCurrentChanged( QWidget * view)