[Libreoffice-commits] core.git: Branch 'feature/gsoc14-draw-chained-text-boxes' - editeng/source

matteocam matteo.campanelli at gmail.com
Sat May 23 21:30:33 PDT 2015


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

New commits:
commit 7b9ed149ed4918b44cebfdf3591d5169e185a53a
Author: matteocam <matteo.campanelli at gmail.com>
Date:   Sun May 24 00:15:44 2015 -0400

    Fixed compilation error with SvxColorBackgroundItem in dbgutil
    
    Change-Id: Ie753e6054cca8bc0b3753a70723b943570d275ba

diff --git a/editeng/source/editeng/editdbg.cxx b/editeng/source/editeng/editdbg.cxx
index 4e4f55b..8703a6a 100644
--- a/editeng/source/editeng/editdbg.cxx
+++ b/editeng/source/editeng/editdbg.cxx
@@ -180,7 +180,7 @@ OString DbgOutItem(const SfxItemPool& rPool, const SfxPoolItem& rItem)
         case EE_CHAR_BKGCOLOR:
         {
             aDebStr.append("FillColor= ");
-            Color aColor( ((SvxColorBackgroundItem&)rItem).GetValue() );
+            Color aColor( ((SvxBackgroundColorItem&)rItem).GetValue() );
             aDebStr.append(static_cast<sal_Int32>(aColor.GetRed()));
             aDebStr.append(", ");
             aDebStr.append(static_cast<sal_Int32>(aColor.GetGreen()));


More information about the Libreoffice-commits mailing list