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

sal_Bool->bool

Change-Id: Ic33d67ddb391c983c299b09c8a4274fc40921505
üst a5bdf6c0
...@@ -54,7 +54,7 @@ public: ...@@ -54,7 +54,7 @@ public:
virtual void Edit( Window*, const Link& rEndEditHdl ); virtual void Edit( Window*, const Link& rEndEditHdl );
sal_Bool Refresh(const OUString& rNewFile, const OUString& rNewFilter, bool Refresh(const OUString& rNewFile, const OUString& rNewFilter,
const OUString* pNewOptions /* = NULL */, sal_uLong nNewRefresh ); const OUString* pNewOptions /* = NULL */, sal_uLong nNewRefresh );
void SetInCreate(bool bSet) { bInCreate = bSet; } void SetInCreate(bool bSet) { bInCreate = bSet; }
void SetAddUndo(bool bSet) { bAddUndo = bSet; } void SetAddUndo(bool bSet) { bAddUndo = bSet; }
...@@ -64,7 +64,7 @@ public: ...@@ -64,7 +64,7 @@ public:
const OUString& GetFilterName() const { return aFilterName; } const OUString& GetFilterName() const { return aFilterName; }
const OUString& GetOptions() const { return aOptions; } const OUString& GetOptions() const { return aOptions; }
sal_Bool IsUsed() const; bool IsUsed() const;
DECL_LINK( RefreshHdl, void* ); DECL_LINK( RefreshHdl, void* );
DECL_LINK( TableEndEditHdl, ::sfx2::SvBaseLink* ); DECL_LINK( TableEndEditHdl, ::sfx2::SvBaseLink* );
......
...@@ -160,12 +160,12 @@ void ScTableLink::Closed() ...@@ -160,12 +160,12 @@ void ScTableLink::Closed()
SvBaseLink::Closed(); SvBaseLink::Closed();
} }
sal_Bool ScTableLink::IsUsed() const bool ScTableLink::IsUsed() const
{ {
return pImpl->m_pDocSh->GetDocument()->HasLink( aFileName, aFilterName, aOptions ); return pImpl->m_pDocSh->GetDocument()->HasLink( aFileName, aFilterName, aOptions );
} }
sal_Bool ScTableLink::Refresh(const OUString& rNewFile, const OUString& rNewFilter, bool ScTableLink::Refresh(const OUString& rNewFile, const OUString& rNewFilter,
const OUString* pNewOptions, sal_uLong nNewRefresh ) const OUString* pNewOptions, sal_uLong nNewRefresh )
{ {
// Dokument laden // Dokument laden
......
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