diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-15 13:58:41 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-15 13:58:41 +0100 |
commit | c72a7a63833f840fdb334d91fc81a77c17f128a6 (patch) | |
tree | dddcb18a9a02da4680aa6cfc68af70559cfcf765 /include/sfx2 | |
parent | 7e4823772ceb00d18301497fdad1a5b2678872bf (diff) |
DdeGetData should apparently return bool
Change-Id: I603198b9fd2c6fea1c9ec7de09b23c61fe9d603c
Diffstat (limited to 'include/sfx2')
-rw-r--r-- | include/sfx2/objsh.hxx | 2 | ||||
-rw-r--r-- | include/sfx2/viewfrm.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/sfx2/objsh.hxx b/include/sfx2/objsh.hxx index c38ed8ff2f0f..d2c0fe3ceb99 100644 --- a/include/sfx2/objsh.hxx +++ b/include/sfx2/objsh.hxx @@ -479,7 +479,7 @@ public: // DDE-Interface virtual long DdeExecute( const OUString& rCmd ); - virtual long DdeGetData( const OUString& rItem, + virtual bool DdeGetData( const OUString& rItem, const OUString& rMimeType, ::com::sun::star::uno::Any & rValue ); virtual long DdeSetData( const OUString& rItem, diff --git a/include/sfx2/viewfrm.hxx b/include/sfx2/viewfrm.hxx index 8c245ab1946c..9628eb8dc0bd 100644 --- a/include/sfx2/viewfrm.hxx +++ b/include/sfx2/viewfrm.hxx @@ -140,7 +140,7 @@ public: // DDE-Interface virtual long DdeExecute( const OUString& rCmd ); - virtual long DdeGetData( const OUString& rItem, + virtual bool DdeGetData( const OUString& rItem, const OUString& rMimeType, ::com::sun::star::uno::Any & rValue ); virtual long DdeSetData( const OUString& rItem, |