]> cloud.milkyroute.net Git - dolphin.git/commitdiff
fix export
authorChristian Ehrlicher <ch.ehrlicher@gmx.de>
Sun, 25 Mar 2007 18:29:14 +0000 (18:29 +0000)
committerChristian Ehrlicher <ch.ehrlicher@gmx.de>
Sun, 25 Mar 2007 18:29:14 +0000 (18:29 +0000)
svn path=/trunk/KDE/kdebase/apps/; revision=646436

src/dolphincontroller.h
src/dolphindetailsview.h
src/dolphiniconsview.h
src/dolphinsettings.h
src/dolphinsortfilterproxymodel.h
src/libdolphin_export.h
src/viewproperties.h

index 7bd7a4b08d8584c8b2f2bb520ceb9e5be7056f42..af5ac35175211d89d82830ac39227e1d649755e9 100644 (file)
@@ -46,7 +46,7 @@ class QPoint;
  * when an item should be triggered and a lot more. The controller emits the corresponding signals
  * so that the receiver may react on those changes.
  */
-class LIBDOLPHIN_EXPORT DolphinController : public QObject
+class LIBDOLPHINPRIVATE_EXPORT DolphinController : public QObject
 {
     Q_OBJECT
 
index cbeb861d1642a5184577425829acf88d962af82b..681a5e1f98ffb8058416d8002f52dfd2bd962952 100644 (file)
@@ -36,7 +36,7 @@ class DolphinController;
  * that full available width of the view is used by stretching the width
  * of the name column.
  */
-class LIBDOLPHIN_EXPORT DolphinDetailsView : public QTreeView
+class LIBDOLPHINPRIVATE_EXPORT DolphinDetailsView : public QTreeView
 {
     Q_OBJECT
 
index cc3715c61bea81af88288aae38c4d32d85992167..45206053400042b25c66bff2521cf24e154db307 100644 (file)
@@ -33,7 +33,7 @@ class DolphinView;
  * It is also possible that instead of the icon a preview of the item
  * content is shown.
  */
-class LIBDOLPHIN_EXPORT DolphinIconsView : public QListView
+class LIBDOLPHINPRIVATE_EXPORT DolphinIconsView : public QListView
 {
     Q_OBJECT
 
index 296f943fc7a4b45f289324f1f5c7b5ca947379c9..ada2ce807224b065dd4a7ea0118fa0121033c40f 100644 (file)
@@ -40,7 +40,7 @@ class DetailsModeSettings;
  * - bookmarks
  * - properties for icons and details view
  */
-class LIBDOLPHIN_EXPORT DolphinSettings {
+class LIBDOLPHINPRIVATE_EXPORT DolphinSettings {
 public:
     static DolphinSettings& instance();
 
index a2e1324d8bb1317d787a9eec42e7db32a3b5ef7c..44b4ce918e27db9899db0a09b5b08bdf0ec0c760 100644 (file)
@@ -39,7 +39,7 @@
  *
  * It is assured that directories are always sorted before files.
  */
-class LIBDOLPHIN_EXPORT DolphinSortFilterProxyModel : public QSortFilterProxyModel
+class LIBDOLPHINPRIVATE_EXPORT DolphinSortFilterProxyModel : public QSortFilterProxyModel
 {
     Q_OBJECT
 
index 6603844f1607f0d2c46db2e89eff8b4f53c0aff4..36071e1a3e67fd14da672e50bbf4bd91c9afc1c3 100644 (file)
 # endif
 #endif
 
+#ifdef MAKE_DOLPHINPRIVATE_LIB
+# define LIBDOLPHINPRIVATE_EXPORT KDE_EXPORT
+#else
+# ifdef Q_OS_WIN
+#  define LIBDOLPHINPRIVATE_EXPORT KDE_IMPORT
+# else
+#  define LIBDOLPHINPRIVATE_EXPORT KDE_EXPORT
+# endif
+#endif
+
+
 #endif
 
index be64b989bfecc3b1ab54151e82bd29c42200dd32..4ca22051403aaac10c10b62ee97bc1cf8aec22a2 100644 (file)
@@ -51,7 +51,7 @@ class QFile;
  * (see GeneralSettings::globalViewMode()), the values from the global .directory file
  * are used for initialization.
  */
-class LIBDOLPHIN_EXPORT ViewProperties
+class LIBDOLPHINPRIVATE_EXPORT ViewProperties
 {
 public:
     explicit ViewProperties(const KUrl& url);