aboutsummaryrefslogtreecommitdiff
path: root/x11/kde4-runtime/files/patch-kioslave_media_kdedmodule_fstabbackend.h
diff options
context:
space:
mode:
Diffstat (limited to 'x11/kde4-runtime/files/patch-kioslave_media_kdedmodule_fstabbackend.h')
-rw-r--r--x11/kde4-runtime/files/patch-kioslave_media_kdedmodule_fstabbackend.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/x11/kde4-runtime/files/patch-kioslave_media_kdedmodule_fstabbackend.h b/x11/kde4-runtime/files/patch-kioslave_media_kdedmodule_fstabbackend.h
deleted file mode 100644
index e9ceadf8e9b7..000000000000
--- a/x11/kde4-runtime/files/patch-kioslave_media_kdedmodule_fstabbackend.h
+++ /dev/null
@@ -1,37 +0,0 @@
---- kioslave/media/kdedmodule/fstabbackend.h
-+++ kioslave/media/kdedmodule/fstabbackend.h
-@@ -24,6 +24,10 @@
- #include <qobject.h>
- #include <qstringlist.h>
-
-+#ifdef Q_OS_FREEBSD
-+#include <qtimer.h>
-+#endif
-+
- class FstabBackend : public QObject, public BackendBase
- {
- Q_OBJECT
-@@ -38,17 +42,20 @@
- QString &label);
- private slots:
- void slotDirty(const QString &path);
--
--private:
- void handleFstabChange();
- void handleMtabChange();
-
-+private:
- static QString generateId(const QString &devNode,
- const QString &mountPoint);
-- static QString generateName(const QString &devNode);
-+ static QString generateName(const QString &devNode,
-+ const QString &fsType);
-
- QStringList m_mtabIds;
- QStringList m_fstabIds;
-+#ifdef Q_OS_FREEBSD
-+ QTimer m_mtabTimer;
-+#endif
- };
-
- #endif