summaryrefslogtreecommitdiff
path: root/libopie
Unidiff
Diffstat (limited to 'libopie') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/ofileselector.cc4
-rw-r--r--libopie/ofileview.h6
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
@@ -892,5 +892,5 @@ void OFileSelector::addFile(const QString &mime, QFileInfo *info, bool symlink )
892} 892}
893 893
894void OFileSelector::addDir(const QString &mime, QFileInfo *info, bool symlink ) 894void OFileSelector::addDir(const QString &/*mime*/, QFileInfo *info, bool symlink )
895{ 895{
896 if(!m_dir ) 896 if(!m_dir )
@@ -978,5 +978,5 @@ void OFileSelector::slotCurrentChanged(QListViewItem *item )
978 978
979// either select or change dir 979// either select or change dir
980void OFileSelector::slotClicked( int button, QListViewItem *item, const QPoint &point, int ) 980void OFileSelector::slotClicked( int button, QListViewItem *item, const QPoint &/*point*/, int )
981{ 981{
982 if( item == 0 ) 982 if( item == 0 )
diff --git a/libopie/ofileview.h b/libopie/ofileview.h
index 48a71ca..ed256f1 100644
--- a/libopie/ofileview.h
+++ b/libopie/ofileview.h
@@ -43,5 +43,5 @@ class OFileSelectorView : public QWidget {
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,
@@ -57,5 +57,5 @@ class OFileSelectorView : public QWidget {
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 &);
@@ -70,5 +70,5 @@ class OFileViewFactory {
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 );