summaryrefslogtreecommitdiffstats
path: root/sfx2/source/appl/lnkbase2.cxx
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2013-07-05 16:25:03 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2013-07-07 20:00:16 +0000
commit009851223b5ced4ed2662af2e2ae81c0f9200e45 (patch)
treea8ab339589ea23b98513d394eabc4f135e69ccae /sfx2/source/appl/lnkbase2.cxx
parentModifying comments to meet Doxygen standards (diff)
downloadcore-009851223b5ced4ed2662af2e2ae81c0f9200e45.tar.gz
core-009851223b5ced4ed2662af2e2ae81c0f9200e45.zip
module svl: all String and some bool and related clean-up
Change-Id: I36eb559fa58dbe75384b7119c788af0048813aed Reviewed-on: https://gerrit.libreoffice.org/4733 Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com> Tested-by: Norbert Thiebaud <nthiebaud@gmail.com>
Diffstat (limited to 'sfx2/source/appl/lnkbase2.cxx')
-rw-r--r--sfx2/source/appl/lnkbase2.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sfx2/source/appl/lnkbase2.cxx b/sfx2/source/appl/lnkbase2.cxx
index 7fd8c789418d..e9d025c14f1f 100644
--- a/sfx2/source/appl/lnkbase2.cxx
+++ b/sfx2/source/appl/lnkbase2.cxx
@@ -109,8 +109,8 @@ public:
virtual ~ImplDdeItem();
virtual DdeData* Get( sal_uIntPtr );
- virtual sal_Bool Put( const DdeData* );
- virtual void AdviseLoop( sal_Bool );
+ virtual bool Put( const DdeData* );
+ virtual void AdviseLoop( bool );
void Notify()
{
@@ -564,14 +564,14 @@ DdeData* ImplDdeItem::Get( sal_uIntPtr nFormat )
}
-sal_Bool ImplDdeItem::Put( const DdeData* )
+bool ImplDdeItem::Put( const DdeData* )
{
OSL_FAIL( "ImplDdeItem::Put not implemented" );
- return sal_False;
+ return false;
}
-void ImplDdeItem::AdviseLoop( sal_Bool bOpen )
+void ImplDdeItem::AdviseLoop( bool bOpen )
{
// Connection is closed, so also unsubscribe link
if( pLink->GetObj() )