Kaydet (Commit) f8aca00c authored tarafından Noel Grandin's avatar Noel Grandin

sal_Bool->bool

Change-Id: I326e23e4ed5fdc47b1cde22a95a5e77c3be93d7f
üst 6086f30e
......@@ -73,7 +73,7 @@ namespace calc
#endif
//---------------------------------------------------------------------
OCellValueBinding::OCellValueBinding( const Reference< XSpreadsheetDocument >& _rxDocument, sal_Bool _bListPos )
OCellValueBinding::OCellValueBinding( const Reference< XSpreadsheetDocument >& _rxDocument, bool _bListPos )
:OCellValueBinding_Base( m_aMutex )
,OCellValueBinding_PBase( OCellValueBinding_Base::rBHelper )
,m_xDocument( _rxDocument )
......@@ -630,7 +630,7 @@ namespace calc
// TODO: be an XModifyBroadcaster, so that changes in our cell can be notified
// to the BindableValue which is/will be bound to this instance.
m_bInitialized = sal_True;
m_bInitialized = true;
// TODO: place your code here
}
......
......@@ -72,13 +72,13 @@ namespace calc
m_xCellText; /// the cell we're bound to, for text access
::cppu::OInterfaceContainerHelper
m_aModifyListeners; /// our modify listeners
sal_Bool m_bInitialized; /// has XInitialization::initialize been called?
sal_Bool m_bListPos; /// constructed as ListPositionCellBinding?
bool m_bInitialized; /// has XInitialization::initialize been called?
bool m_bListPos; /// constructed as ListPositionCellBinding?
public:
OCellValueBinding(
const ::com::sun::star::uno::Reference< ::com::sun::star::sheet::XSpreadsheetDocument >& _rxDocument,
sal_Bool _bListPos
bool _bListPos
);
using OCellValueBinding_PBase::getFastPropertyValue;
......
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