summaryrefslogtreecommitdiff
authorar <ar>2004-06-24 19:51:57 (UTC)
committer ar <ar>2004-06-24 19:51:57 (UTC)
commit44b83b1adf90f2c98901c20775a3667558086bd6 (patch) (unidiff)
treeb961078fbe10e382ec57dd36f25147c9f03042e1
parent3cd1b6725a6ef92ec7d788c2d47c1f84c8b993d1 (diff)
downloadopie-44b83b1adf90f2c98901c20775a3667558086bd6.zip
opie-44b83b1adf90f2c98901c20775a3667558086bd6.tar.gz
opie-44b83b1adf90f2c98901c20775a3667558086bd6.tar.bz2
- CLEANUP: correct appname
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/opie-sheet/mainwindow.h2
-rw-r--r--noncore/apps/tinykate/mainwindow/tinykate.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/noncore/apps/opie-sheet/mainwindow.h b/noncore/apps/opie-sheet/mainwindow.h
index 642b7ae..fb15891 100644
--- a/noncore/apps/opie-sheet/mainwindow.h
+++ b/noncore/apps/opie-sheet/mainwindow.h
@@ -142,23 +142,23 @@ private slots:
142 void slotSheetRemove(); 142 void slotSheetRemove();
143 void slotFuncOutput(); 143 void slotFuncOutput();
144 void slotCellSelect(bool lock); 144 void slotCellSelect(bool lock);
145 void slotCellClicked(const QString &cell); 145 void slotCellClicked(const QString &cell);
146 void slotSheetChanged(const QString &name); 146 void slotSheetChanged(const QString &name);
147 void slotDocModified(); 147 void slotDocModified();
148 void selectorShow(); 148 void selectorShow();
149 void selectorHide(); 149 void selectorHide();
150 void selectorFileNew(const DocLnk &lnkDoc); 150 void selectorFileNew(const DocLnk &lnkDoc);
151 void selectorFileOpen(const DocLnk &lnkDoc); 151 void selectorFileOpen(const DocLnk &lnkDoc);
152 152
153public: 153public:
154static QString appName() { return QString::fromLatin1("sheetqt"); } 154static QString appName() { return QString::fromLatin1("opie-sheet"); }
155 MainWindow(QWidget *p, const char*, WFlags); 155 MainWindow(QWidget *p, const char*, WFlags);
156 ~MainWindow(); 156 ~MainWindow();
157 157
158 void setHelpFile(const QString &help_filename) { helpFile=help_filename; } 158 void setHelpFile(const QString &help_filename) { helpFile=help_filename; }
159 159
160public slots: 160public slots:
161 void setDocument(const QString &applnk_filename); 161 void setDocument(const QString &applnk_filename);
162}; 162};
163 163
164#endif 164#endif
diff --git a/noncore/apps/tinykate/mainwindow/tinykate.h b/noncore/apps/tinykate/mainwindow/tinykate.h
index f630f62..8eb344d 100644
--- a/noncore/apps/tinykate/mainwindow/tinykate.h
+++ b/noncore/apps/tinykate/mainwindow/tinykate.h
@@ -24,25 +24,25 @@
24#include <ktexteditor.h> 24#include <ktexteditor.h>
25 25
26class QToolButton; 26class QToolButton;
27class QAction; 27class QAction;
28class QPopupMenu; 28class QPopupMenu;
29 29
30class TinyKate : public QMainWindow 30class TinyKate : public QMainWindow
31{ 31{
32 Q_OBJECT 32 Q_OBJECT
33public: 33public:
34 TinyKate( QWidget *parent=0, const char *name=0, WFlags f = 0); 34 TinyKate( QWidget *parent=0, const char *name=0, WFlags f = 0);
35 ~TinyKate( ); 35 ~TinyKate( );
36 static QString appName() { return QString::fromLatin1( "kate" ); }; 36 static QString appName() { return QString::fromLatin1( "tinykate" ); };
37 37
38 38
39public slots: 39public slots:
40 void slotNew(); 40 void slotNew();
41 void setDocument(const QString& fileref); 41 void setDocument(const QString& fileref);
42 42
43protected slots: 43protected slots:
44 void slotOpen(); 44 void slotOpen();
45 void slotClose(); 45 void slotClose();
46 void slotCurrentChanged(QWidget *); 46 void slotCurrentChanged(QWidget *);
47 void slotSave(); 47 void slotSave();
48 void slotSaveAs(); 48 void slotSaveAs();