author | zecke <zecke> | 2002-04-27 23:12:20 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-04-27 23:12:20 (UTC) |
commit | a64cc0ad0574ae1e15c4965d2557c3e06cc3fd65 (patch) (unidiff) | |
tree | 80a622e1e82e46a24dc5968b7b89180d4420476c | |
parent | db95cde435e507833f58111237f86cb9f9ac927a (diff) | |
download | opie-a64cc0ad0574ae1e15c4965d2557c3e06cc3fd65.zip opie-a64cc0ad0574ae1e15c4965d2557c3e06cc3fd65.tar.gz opie-a64cc0ad0574ae1e15c4965d2557c3e06cc3fd65.tar.bz2 |
compile it for Max
-rw-r--r-- | libopie/ofileselector.cc | 4 | ||||
-rw-r--r-- | libopie/ofileview.h | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/libopie/ofileselector.cc b/libopie/ofileselector.cc index 0e508af..9cf3f36 100644 --- a/libopie/ofileselector.cc +++ b/libopie/ofileselector.cc | |||
@@ -891,7 +891,7 @@ void OFileSelector::addFile(const QString &mime, QFileInfo *info, bool symlink ) | |||
891 | dir, locked ); | 891 | dir, locked ); |
892 | } | 892 | } |
893 | 893 | ||
894 | void OFileSelector::addDir(const QString &mime, QFileInfo *info, bool symlink ) | 894 | void OFileSelector::addDir(const QString &/*mime*/, QFileInfo *info, bool symlink ) |
895 | { | 895 | { |
896 | if(!m_dir ) | 896 | if(!m_dir ) |
897 | return; | 897 | return; |
@@ -977,7 +977,7 @@ void OFileSelector::slotCurrentChanged(QListViewItem *item ) | |||
977 | } | 977 | } |
978 | 978 | ||
979 | // either select or change dir | 979 | // either select or change dir |
980 | void OFileSelector::slotClicked( int button, QListViewItem *item, const QPoint &point, int ) | 980 | void OFileSelector::slotClicked( int button, QListViewItem *item, const QPoint &/*point*/, int ) |
981 | { | 981 | { |
982 | if( item == 0 ) | 982 | if( item == 0 ) |
983 | return; | 983 | return; |
diff --git a/libopie/ofileview.h b/libopie/ofileview.h index 48a71ca..ed256f1 100644 --- a/libopie/ofileview.h +++ b/libopie/ofileview.h | |||
@@ -42,7 +42,7 @@ class OFileSelectorView : public QWidget { | |||
42 | const char *name ) | 42 | const char *name ) |
43 | : QWidget(widget, name ) | 43 | : QWidget(widget, name ) |
44 | { }; | 44 | { }; |
45 | virtual ~OFileSelectorView(); | 45 | virtual ~OFileSelectorView() = 0; |
46 | 46 | ||
47 | virtual void addFile(const QString &mine, | 47 | virtual void addFile(const QString &mine, |
48 | QFileInfo *info, | 48 | QFileInfo *info, |
@@ -56,7 +56,7 @@ class OFileSelectorView : public QWidget { | |||
56 | QFileInfo *info, | 56 | QFileInfo *info, |
57 | bool isSymlink = FALSE ) = 0; | 57 | bool isSymlink = FALSE ) = 0; |
58 | 58 | ||
59 | virtual void cd(const QString &path ); | 59 | virtual void cd(const QString &path ) = 0; |
60 | signals: | 60 | signals: |
61 | void fileSelected(const QString &); | 61 | void fileSelected(const QString &); |
62 | void fileSelected(const DocLnk & ); | 62 | void fileSelected(const DocLnk & ); |
@@ -69,7 +69,7 @@ class OFileViewFactory { | |||
69 | // Q_OBJECT | 69 | // Q_OBJECT |
70 | public: | 70 | public: |
71 | OFileViewFactory() {} ; | 71 | OFileViewFactory() {} ; |
72 | virtual ~OFileViewFactory(); | 72 | virtual ~OFileViewFactory() = 0; |
73 | 73 | ||
74 | OFileSelectorView* newView(QWidget *parent, const char *name ); | 74 | OFileSelectorView* newView(QWidget *parent, const char *name ); |
75 | QString name()const; | 75 | QString name()const; |