summaryrefslogtreecommitdiff
path: root/noncore/apps/tinykate/libkate/microkde/kfiledialog.h
Unidiff
Diffstat (limited to 'noncore/apps/tinykate/libkate/microkde/kfiledialog.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/tinykate/libkate/microkde/kfiledialog.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/noncore/apps/tinykate/libkate/microkde/kfiledialog.h b/noncore/apps/tinykate/libkate/microkde/kfiledialog.h
new file mode 100644
index 0000000..61781f0
--- a/dev/null
+++ b/noncore/apps/tinykate/libkate/microkde/kfiledialog.h
@@ -0,0 +1,21 @@
1#ifndef MICROKDE_KFILEDIALOG_H
2#define MICROKDE_KFILEDIALOG_H
3
4class KFileDialog
5{
6 public:
7
8 static QString getSaveFileName( const QString &,
9 const QString &, QWidget * )
10 {
11 return QString::null;
12 }
13
14 static QString getOpenFileName( const QString &,
15 const QString &, QWidget * )
16 {
17 return QString::null;
18 }
19};
20
21#endif