summaryrefslogtreecommitdiff
path: root/sfx2/source/appl/openuriexternally.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2018-03-19 10:26:35 +0000
committerCaolán McNamara <caolanm@redhat.com>2018-03-19 15:07:55 +0100
commit72d0f22c0c04eacb3a40bd64df4d4f1b0a42f49f (patch)
tree94c05c1535ff38f2aab93f62d374d54dcf07048f /sfx2/source/appl/openuriexternally.cxx
parent2ec02d7ea1337df3adabe9ac91d4f506e3372c80 (diff)
coverity#1430090 Uninitialized scalar field
Change-Id: I612642fdd09b2427aede1ef7b90b36b7c27682e1 Reviewed-on: https://gerrit.libreoffice.org/51540 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sfx2/source/appl/openuriexternally.cxx')
-rw-r--r--sfx2/source/appl/openuriexternally.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/sfx2/source/appl/openuriexternally.cxx b/sfx2/source/appl/openuriexternally.cxx
index 7ffa980706bd..bff5534495d6 100644
--- a/sfx2/source/appl/openuriexternally.cxx
+++ b/sfx2/source/appl/openuriexternally.cxx
@@ -39,6 +39,10 @@ private:
DECL_LINK(onOpenURI, Timer*, void);
public:
+ URITools()
+ : mbHandleSystemShellExecuteException(false)
+ {
+ }
void openURI(const OUString& sURI, bool bHandleSystemShellExecuteException);
};