Kaydet (Commit) d3896741 authored tarafından Ariel Constenla-Haile's avatar Ariel Constenla-Haile

Fix build breaker.

üst 52a0a12e
......@@ -44,6 +44,9 @@ enum tSeriesOrDiagramPropertyType
DIAGRAM
};
extern bool operator!=( const ::com::sun::star::awt::Size & rSize1,
const ::com::sun::star::awt::Size & rSize2 );
//PROPERTYTYPE is the type of the outer property
template< typename PROPERTYTYPE >
......
......@@ -94,6 +94,12 @@ public:
virtual ~WrappedSymbolBitmapURLProperty();
};
// this operator is not defined by default
bool operator!=( const awt::Size & rSize1, const awt::Size & rSize2 )
{
return (rSize1.Width != rSize2.Width) || (rSize1.Height != rSize2.Height);
}
class WrappedSymbolSizeProperty : public WrappedSeriesOrDiagramProperty< awt::Size >
{
public:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment