author | llornkcor <llornkcor> | 2002-12-26 04:14:13 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-12-26 04:14:13 (UTC) |
commit | df79efd854ebb22046e98b9076d31e94e2245ab2 (patch) (unidiff) | |
tree | 0a1c06fb787e44a2750ebf59efdf453c09ea2bd7 | |
parent | e4e891190200cf26ba4bafcadca17f2473493276 (diff) | |
download | opie-df79efd854ebb22046e98b9076d31e94e2245ab2.zip opie-df79efd854ebb22046e98b9076d31e94e2245ab2.tar.gz opie-df79efd854ebb22046e98b9076d31e94e2245ab2.tar.bz2 |
fix docname setting
-rw-r--r-- | noncore/apps/tinykate/tinykate.cpp | 5 |
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 | |||
@@ -149,34 +149,37 @@ TinyKate::TinyKate( QWidget *parent, const char *name, WFlags f) : | |||
149 | } | 149 | } |
150 | 150 | ||
151 | 151 | ||
152 | void TinyKate::slotOpen( ) | 152 | 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 | ||
160 | void TinyKate::open(const QString & filename) | 160 | void 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 | ||
171 | void TinyKate::slotCurrentChanged( QWidget * view) | 174 | void 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())); |
179 | disconnect(editRedo,SIGNAL(activated()),currentView,SLOT(redo())); | 182 | disconnect(editRedo,SIGNAL(activated()),currentView,SLOT(redo())); |
180 | disconnect(viewIncFontSizes,SIGNAL(activated()), currentView,SLOT(slotIncFontSizes())); | 183 | disconnect(viewIncFontSizes,SIGNAL(activated()), currentView,SLOT(slotIncFontSizes())); |
181 | disconnect(viewDecFontSizes,SIGNAL(activated()), currentView,SLOT(slotDecFontSizes())); | 184 | disconnect(viewDecFontSizes,SIGNAL(activated()), currentView,SLOT(slotDecFontSizes())); |
182 | disconnect(hlmenu,SIGNAL(activated(int)), currentView,SLOT(setHl(int))); | 185 | disconnect(hlmenu,SIGNAL(activated(int)), currentView,SLOT(setHl(int))); |