desktop/source/splash/splash.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 969dab55bb32b4b4137d89a91050f6eaeb1715b0
Author: Juergen Funk <juergen.funk...@cib.de>
Date:   Wed Apr 29 17:32:02 2015 +0200

    Fix for gcc 4.6.3
    
    with out the class-define
      gcc -> "error: a class-key must be used when declaring a friend"
    
    Change-Id: I6384d9b37a9105db2af9e6c65cd02a56c4169abe
    Reviewed-on: https://gerrit.libreoffice.org/15568
    Reviewed-by: Michael Meeks <michael.me...@collabora.com>
    Tested-by: Michael Meeks <michael.me...@collabora.com>

diff --git a/desktop/source/splash/splash.cxx b/desktop/source/splash/splash.cxx
index c56ea26..c99c3a2 100644
--- a/desktop/source/splash/splash.cxx
+++ b/desktop/source/splash/splash.cxx
@@ -64,7 +64,7 @@ public:
 class  SplashScreen
     : public ::cppu::WeakImplHelper3< XStatusIndicator, XInitialization, 
XServiceInfo >
 {
-    friend SplashScreenWindow;
+    friend class SplashScreenWindow;
 private:
     enum BitmapMode { BM_FULLSCREEN, BM_DEFAULTMODE };
 
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to