summaryrefslogtreecommitdiff
path: root/noncore/apps
Unidiff
Diffstat (limited to 'noncore/apps') (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
@@ -153,26 +153,29 @@ void TinyKate::slotOpen( )
153{ 153{
154 QString filename=OFileDialog::getOpenFileName(OFileSelector::EXTENDED_ALL); 154 QString filename=OFileDialog::getOpenFileName(OFileSelector::EXTENDED_ALL);
155 if (!filename.isEmpty()) { 155 if (!filename.isEmpty()) {
156 open(filename); 156 open(filename);
157 } 157 }
158} 158}
159 159
160void TinyKate::open(const QString & filename) 160void TinyKate::open(const QString & filename)
161{ 161{
162 KateDocument *kd= new KateDocument(false, false, this,0,this); 162 KateDocument *kd= new KateDocument(false, false, this,0,this);
163 KTextEditor::View *kv; 163 KTextEditor::View *kv;
164 QFileInfo fi(filename); 164 QFileInfo fi(filename);
165 tabwidget->addTab(kv=kd->createView(tabwidget,"bLAH"),"tinykate/tinykate",fi.fileName()); 165 QString filenamed = fi.fileName();
166 tabwidget->addTab(kv=kd->createView(tabwidget,"bLAH"),"tinykate/tinykate", filenamed );
166 qDebug(filename); 167 qDebug(filename);
168
169 kd->setDocName( filenamed);
167 kd->open(filename); 170 kd->open(filename);
168 viewCount++; 171 viewCount++;
169} 172}
170 173
171void TinyKate::slotCurrentChanged( QWidget * view) 174void TinyKate::slotCurrentChanged( QWidget * view)
172{ 175{
173 if (currentView) { 176 if (currentView) {
174 177
175 disconnect(editCopy,SIGNAL(activated()),currentView,SLOT(copy())); 178 disconnect(editCopy,SIGNAL(activated()),currentView,SLOT(copy()));
176 disconnect(editCut,SIGNAL(activated()),currentView,SLOT(cut())); 179 disconnect(editCut,SIGNAL(activated()),currentView,SLOT(cut()));
177 disconnect(editPaste,SIGNAL(activated()),currentView,SLOT(paste())); 180 disconnect(editPaste,SIGNAL(activated()),currentView,SLOT(paste()));
178 disconnect(editUndo,SIGNAL(activated()),currentView,SLOT(undo())); 181 disconnect(editUndo,SIGNAL(activated()),currentView,SLOT(undo()));