[Libreoffice-commits] core.git: desktop/source
Juergen Funk
juergen.funk_ml at cib.de
Wed Apr 29 09:48:17 PDT 2015
desktop/source/splash/splash.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 969dab55bb32b4b4137d89a91050f6eaeb1715b0
Author: Juergen Funk <juergen.funk_ml at 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.meeks at collabora.com>
Tested-by: Michael Meeks <michael.meeks at 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 };
More information about the Libreoffice-commits
mailing list