diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-11-25 11:20:59 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-11-25 15:59:41 +0100 |
commit | 9a68ae949c8db91fad463df6d84e4eb89b3be4f7 (patch) | |
tree | 1fb3d8eb5cb149a0d55815b935abc9f23a818232 /include | |
parent | 21d36af1fd3037f1f425dd8303b50b8848d729ce (diff) |
SfxObjectShell::DdeExecute and SfxApplication::DdeExecute should return bool
Change-Id: I32749562744572723de8a38811b6bc0bd950b582
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106580
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/sfx2/app.hxx | 2 | ||||
-rw-r--r-- | include/sfx2/objsh.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/sfx2/app.hxx b/include/sfx2/app.hxx index 9714ad8e13d5..26b14e2ca2d4 100644 --- a/include/sfx2/app.hxx +++ b/include/sfx2/app.hxx @@ -120,7 +120,7 @@ public: // DDE #if defined(_WIN32) - static long DdeExecute( const OUString& rCmd ); + static bool DdeExecute( const OUString& rCmd ); #endif bool InitializeDde(); const DdeService* GetDdeService() const; diff --git a/include/sfx2/objsh.hxx b/include/sfx2/objsh.hxx index c4ec915588b4..8d3897b29d07 100644 --- a/include/sfx2/objsh.hxx +++ b/include/sfx2/objsh.hxx @@ -532,7 +532,7 @@ public: #if defined(_WIN32) // DDE-Interface - long DdeExecute( const OUString& rCmd ); + bool DdeExecute( const OUString& rCmd ); virtual bool DdeGetData( const OUString& rItem, const OUString& rMimeType, css::uno::Any & rValue ); |