summaryrefslogtreecommitdiff
path: root/noncore/apps
authorharlekin <harlekin>2003-04-26 19:12:45 (UTC)
committer harlekin <harlekin>2003-04-26 19:12:45 (UTC)
commit64c48b637c1bd1bef679bff500f3e0ce5365358d (patch) (unidiff)
treeef7405ffc95384e52daa12af13a9e55f484d19a8 /noncore/apps
parent9dfeb5f74c0d7f9611ec440e6e7760d2f19f73ae (diff)
downloadopie-64c48b637c1bd1bef679bff500f3e0ce5365358d.zip
opie-64c48b637c1bd1bef679bff500f3e0ce5365358d.tar.gz
opie-64c48b637c1bd1bef679bff500f3e0ce5365358d.tar.bz2
added a setDocuments method
Diffstat (limited to 'noncore/apps') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/tinykate/tinykate.cpp5
-rw-r--r--noncore/apps/tinykate/tinykate.h1
2 files changed, 6 insertions, 0 deletions
diff --git a/noncore/apps/tinykate/tinykate.cpp b/noncore/apps/tinykate/tinykate.cpp
index 694efc6..ea7ea45 100644
--- a/noncore/apps/tinykate/tinykate.cpp
+++ b/noncore/apps/tinykate/tinykate.cpp
@@ -185,6 +185,11 @@ void TinyKate::open(const QString & filename)
185 viewCount++; 185 viewCount++;
186} 186}
187 187
188void TinyKate::setDocument(const QString& fileref)
189{
190 open( fileref );
191}
192
188void TinyKate::slotCurrentChanged( QWidget * view) 193void TinyKate::slotCurrentChanged( QWidget * view)
189{ 194{
190 if (currentView) { 195 if (currentView) {
diff --git a/noncore/apps/tinykate/tinykate.h b/noncore/apps/tinykate/tinykate.h
index cdd8f43..2e8ca74 100644
--- a/noncore/apps/tinykate/tinykate.h
+++ b/noncore/apps/tinykate/tinykate.h
@@ -36,6 +36,7 @@ public:
36 36
37public slots: 37public slots:
38 void slotNew(); 38 void slotNew();
39 void setDocument(const QString& fileref);
39 40
40protected slots: 41protected slots:
41 void slotOpen(); 42 void slotOpen();