[prev in list] [next in list] [prev in thread] [next in thread] 

List:       kde-commits
Subject:    [gwenview/KDE/4.13] lib: --warnings (-Wmismatched-tags which is an error with MSVC)
From:       Andre Woebbeking <Woebbeking () kde ! org>
Date:       2014-03-02 14:29:44
Message-ID: E1WK7Oi-0005FN-V6 () scm ! kde ! org
[Download RAW message or body]

Git commit c372e9e9c25598ee2dfcb66fded37a31901c53cf by Andre Woebbeking.
Committed on 02/03/2014 at 14:25.
Pushed by woebbe into branch 'KDE/4.13'.

--warnings (-Wmismatched-tags which is an error with MSVC)

M  +1    -1    lib/cms/cmsprofile.h
M  +1    -1    lib/document/document.h
M  +1    -1    lib/document/documentjob.h
M  +1    -1    lib/document/savejob.h
M  +1    -1    lib/documentonlyproxymodel.h
M  +2    -2    lib/documentview/abstractimageview.h
M  +1    -1    lib/documentview/birdeyeview.h
M  +1    -1    lib/documentview/documentviewcontainer.h
M  +1    -1    lib/documentview/documentviewcontroller.h
M  +1    -1    lib/documentview/documentviewsynchronizer.h
M  +1    -1    lib/documentview/loadingindicator.h
M  +1    -1    lib/documentview/rasterimageview.h
M  +1    -1    lib/hud/hudbutton.h
M  +1    -1    lib/hud/hudbuttonbox.h
M  +1    -1    lib/hud/hudcountdown.h
M  +1    -1    lib/hud/hudlabel.h
M  +1    -1    lib/hud/hudslider.h
M  +1    -1    lib/kindproxymodel.h
M  +1    -1    lib/recursivedirmodel.h
M  +1    -1    lib/resize/resizeimagedialog.h
M  +1    -1    lib/semanticinfo/baloosemanticinfobackend.h
M  +1    -1    lib/shadowfilter.h
M  +1    -1    lib/thumbnailview/contextbarbutton.h
M  +1    -1    lib/thumbnailview/itemeditor.h

http://commits.kde.org/gwenview/c372e9e9c25598ee2dfcb66fded37a31901c53cf

diff --git a/lib/cms/cmsprofile.h b/lib/cms/cmsprofile.h
index 3d16da8..014654c 100644
--- a/lib/cms/cmsprofile.h
+++ b/lib/cms/cmsprofile.h
@@ -45,7 +45,7 @@ namespace Gwenview
 namespace Cms
 {
 =

-class ProfilePrivate;
+struct ProfilePrivate;
 /**
  * Wrapper for lcms color profile
  */
diff --git a/lib/document/document.h b/lib/document/document.h
index 97fa173..2795fc1 100644
--- a/lib/document/document.h
+++ b/lib/document/document.h
@@ -230,7 +230,7 @@ private Q_SLOTS:
 private:
     friend class AbstractDocumentImpl;
     friend class DocumentFactory;
-    friend class DocumentPrivate;
+    friend struct DocumentPrivate;
     friend class DownSamplingJob;
 =

     void setImageInternal(const QImage&);
diff --git a/lib/document/documentjob.h b/lib/document/documentjob.h
index c06a780..ddfd93b 100644
--- a/lib/document/documentjob.h
+++ b/lib/document/documentjob.h
@@ -34,7 +34,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Cambri=
dge, MA 02110-1301, USA
 namespace Gwenview
 {
 =

-class DocumentJobPrivate;
+struct DocumentJobPrivate;
 =

 /**
  * Represent an asynchronous task to be executed on a document
diff --git a/lib/document/savejob.h b/lib/document/savejob.h
index e25b4a9..5ed86cb 100644
--- a/lib/document/savejob.h
+++ b/lib/document/savejob.h
@@ -38,7 +38,7 @@ namespace Gwenview
 =

 class DocumentLoadedImpl;
 =

-class SaveJobPrivate;
+struct SaveJobPrivate;
 class GWENVIEWLIB_EXPORT SaveJob : public DocumentJob
 {
     Q_OBJECT
diff --git a/lib/documentonlyproxymodel.h b/lib/documentonlyproxymodel.h
index 0b47d3d..c7e513e 100644
--- a/lib/documentonlyproxymodel.h
+++ b/lib/documentonlyproxymodel.h
@@ -32,7 +32,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Cambri=
dge, MA 02110-1301, USA
 namespace Gwenview
 {
 =

-class DocumentOnlyProxyModelPrivate;
+struct DocumentOnlyProxyModelPrivate;
 /**
  * A proxy model which lists items which are neither dirs nor archives.
  * Only works with models which expose a KDirModel::FileItemRole.
diff --git a/lib/documentview/abstractimageview.h b/lib/documentview/abstra=
ctimageview.h
index 558f063..1b88c85 100644
--- a/lib/documentview/abstractimageview.h
+++ b/lib/documentview/abstractimageview.h
@@ -32,7 +32,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Cambri=
dge, MA 02110-1301, USA
 namespace Gwenview
 {
 =

-class AbstractImageViewPrivate;
+struct AbstractImageViewPrivate;
 /**
  *
  */
@@ -131,7 +131,7 @@ protected:
     void mouseDoubleClickEvent(QGraphicsSceneMouseEvent* event);
 =

 private:
-    friend class AbstractImageViewPrivate;
+    friend struct AbstractImageViewPrivate;
     AbstractImageViewPrivate* const d;
 };
 =

diff --git a/lib/documentview/birdeyeview.h b/lib/documentview/birdeyeview.h
index 988986a..1f12fe2 100644
--- a/lib/documentview/birdeyeview.h
+++ b/lib/documentview/birdeyeview.h
@@ -33,7 +33,7 @@ namespace Gwenview
 =

 class DocumentView;
 =

-class BirdEyeViewPrivate;
+struct BirdEyeViewPrivate;
 /**
  * Shows a bird-eye view of the current document. Makes it possible to scr=
oll
  * through the document.
diff --git a/lib/documentview/documentviewcontainer.h b/lib/documentview/do=
cumentviewcontainer.h
index de2c2f5..67dff4e 100644
--- a/lib/documentview/documentviewcontainer.h
+++ b/lib/documentview/documentviewcontainer.h
@@ -37,7 +37,7 @@ namespace Gwenview
 =

 class DocumentView;
 =

-class DocumentViewContainerPrivate;
+struct DocumentViewContainerPrivate;
 /**
  * A container for DocumentViews which will arrange them to make best use =
of
  * available space.
diff --git a/lib/documentview/documentviewcontroller.h b/lib/documentview/d=
ocumentviewcontroller.h
index 85ba634..26e8f9c 100644
--- a/lib/documentview/documentviewcontroller.h
+++ b/lib/documentview/documentviewcontroller.h
@@ -39,7 +39,7 @@ class DocumentView;
 class SlideContainer;
 class ZoomWidget;
 =

-class DocumentViewControllerPrivate;
+struct DocumentViewControllerPrivate;
 =

 /**
  * Handles all DocumentView specific actions like zooming. Calls the
diff --git a/lib/documentview/documentviewsynchronizer.h b/lib/documentview=
/documentviewsynchronizer.h
index 87a2578..0ade4ef 100644
--- a/lib/documentview/documentviewsynchronizer.h
+++ b/lib/documentview/documentviewsynchronizer.h
@@ -37,7 +37,7 @@ namespace Gwenview
 =

 class DocumentView;
 =

-class DocumentViewSynchronizerPrivate;
+struct DocumentViewSynchronizerPrivate;
 /**
  * A class to synchronize zoom and scroll of DocumentViews
  */
diff --git a/lib/documentview/loadingindicator.h b/lib/documentview/loading=
indicator.h
index 1e79218..8cd6ce0 100644
--- a/lib/documentview/loadingindicator.h
+++ b/lib/documentview/loadingindicator.h
@@ -31,7 +31,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Cambri=
dge, MA 02110-1301, USA
 namespace Gwenview
 {
 =

-class LoadingIndicatorPrivate;
+struct LoadingIndicatorPrivate;
 /**
  * A graphics widget which shows a spinner
  */
diff --git a/lib/documentview/rasterimageview.h b/lib/documentview/rasterim=
ageview.h
index 571b238..407a79f 100644
--- a/lib/documentview/rasterimageview.h
+++ b/lib/documentview/rasterimageview.h
@@ -35,7 +35,7 @@ namespace Gwenview
 =

 class AbstractRasterImageViewTool;
 =

-class RasterImageViewPrivate;
+struct RasterImageViewPrivate;
 class GWENVIEWLIB_EXPORT RasterImageView : public AbstractImageView
 {
     Q_OBJECT
diff --git a/lib/hud/hudbutton.h b/lib/hud/hudbutton.h
index 7d692a6..5bef2da 100644
--- a/lib/hud/hudbutton.h
+++ b/lib/hud/hudbutton.h
@@ -33,7 +33,7 @@ class QIcon;
 namespace Gwenview
 {
 =

-class HudButtonPrivate;
+struct HudButtonPrivate;
 /**
  *
  */
diff --git a/lib/hud/hudbuttonbox.h b/lib/hud/hudbuttonbox.h
index 69b9131..79fdc14 100644
--- a/lib/hud/hudbuttonbox.h
+++ b/lib/hud/hudbuttonbox.h
@@ -36,7 +36,7 @@ namespace Gwenview
 =

 class HudButton;
 =

-class HudButtonBoxPrivate;
+struct HudButtonBoxPrivate;
 /**
  * A hud widget which shows a list of buttons
  */
diff --git a/lib/hud/hudcountdown.h b/lib/hud/hudcountdown.h
index 8e61a21..fa05a0a 100644
--- a/lib/hud/hudcountdown.h
+++ b/lib/hud/hudcountdown.h
@@ -29,7 +29,7 @@ along with this program.  If not, see <http://www.gnu.org=
/licenses/>.
 namespace Gwenview
 {
 =

-class HudCountDownPrivate;
+struct HudCountDownPrivate;
 =

 /**
  * Displays a count-down pie-chart
diff --git a/lib/hud/hudlabel.h b/lib/hud/hudlabel.h
index 150996a..3cf80ce 100644
--- a/lib/hud/hudlabel.h
+++ b/lib/hud/hudlabel.h
@@ -33,7 +33,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Cambri=
dge, MA 02110-1301, USA
 namespace Gwenview
 {
 =

-class HudLabelPrivate;
+struct HudLabelPrivate;
 /**
  *
  */
diff --git a/lib/hud/hudslider.h b/lib/hud/hudslider.h
index 51d91c3..9c21139 100644
--- a/lib/hud/hudslider.h
+++ b/lib/hud/hudslider.h
@@ -32,7 +32,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Cambri=
dge, MA 02110-1301, USA
 namespace Gwenview
 {
 =

-class HudSliderPrivate;
+struct HudSliderPrivate;
 /**
  * A QGraphicsView slider.
  * Provides more-or-less the same API as QSlider.
diff --git a/lib/kindproxymodel.h b/lib/kindproxymodel.h
index 25b26f8..693fb47 100644
--- a/lib/kindproxymodel.h
+++ b/lib/kindproxymodel.h
@@ -34,7 +34,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Cambri=
dge, MA 02110-1301, USA
 namespace Gwenview
 {
 =

-class KindProxyModelPrivate;
+struct KindProxyModelPrivate;
 /**
  * A simple proxy model allowing only objects of a certain kind
  */
diff --git a/lib/recursivedirmodel.h b/lib/recursivedirmodel.h
index 14fb9fb..05008b3 100644
--- a/lib/recursivedirmodel.h
+++ b/lib/recursivedirmodel.h
@@ -35,7 +35,7 @@ class KUrl;
 namespace Gwenview
 {
 =

-class RecursiveDirModelPrivate;
+struct RecursiveDirModelPrivate;
 /**
  * Recursively list content of a dir
  */
diff --git a/lib/resize/resizeimagedialog.h b/lib/resize/resizeimagedialog.h
index 950e90b..c4a5e7e 100644
--- a/lib/resize/resizeimagedialog.h
+++ b/lib/resize/resizeimagedialog.h
@@ -33,7 +33,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Cambri=
dge, MA 02110-1301, USA
 namespace Gwenview
 {
 =

-class ResizeImageDialogPrivate;
+struct ResizeImageDialogPrivate;
 class GWENVIEWLIB_EXPORT ResizeImageDialog : public KDialog
 {
     Q_OBJECT
diff --git a/lib/semanticinfo/baloosemanticinfobackend.h b/lib/semanticinfo=
/baloosemanticinfobackend.h
index d85e122..6e1de00 100644
--- a/lib/semanticinfo/baloosemanticinfobackend.h
+++ b/lib/semanticinfo/baloosemanticinfobackend.h
@@ -62,7 +62,7 @@ private Q_SLOTS:
     void slotFetchFinished(KJob* job);
 =

 private:
-    class Private;
+    struct Private;
     Private* const d;
 };
 =

diff --git a/lib/shadowfilter.h b/lib/shadowfilter.h
index e47dc2d..950082e 100644
--- a/lib/shadowfilter.h
+++ b/lib/shadowfilter.h
@@ -36,7 +36,7 @@ class QWidget;
 namespace Gwenview
 {
 =

-class ShadowFilterPrivate;
+struct ShadowFilterPrivate;
 /**
  * Paint shadows on widget edges
  */
diff --git a/lib/thumbnailview/contextbarbutton.h b/lib/thumbnailview/conte=
xtbarbutton.h
index 58296d9..0a4d82b 100644
--- a/lib/thumbnailview/contextbarbutton.h
+++ b/lib/thumbnailview/contextbarbutton.h
@@ -31,7 +31,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Cambri=
dge, MA 02110-1301, USA
 namespace Gwenview
 {
 =

-class ContextBarButtonPrivate;
+struct ContextBarButtonPrivate;
 /**
  * A button with a special look, appears when hovering over thumbnails
  */
diff --git a/lib/thumbnailview/itemeditor.h b/lib/thumbnailview/itemeditor.h
index b63ae05..a8d95f5 100644
--- a/lib/thumbnailview/itemeditor.h
+++ b/lib/thumbnailview/itemeditor.h
@@ -31,7 +31,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Cambri=
dge, MA 02110-1301, USA
 namespace Gwenview
 {
 =

-class ItemEditorPrivate;
+struct ItemEditorPrivate;
 class ItemEditor : public KLineEdit
 {
     Q_OBJECT
[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic