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

New commits:
commit 7b9ed149ed4918b44cebfdf3591d5169e185a53a
Author: matteocam <[email protected]>
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()));
_______________________________________________
Libreoffice-commits mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to