diff options
author | Tor Lillqvist <tml@collabora.com> | 2015-03-28 19:33:52 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2015-03-28 21:05:22 +0200 |
commit | cbff9aaf99e21bca6b48999df44b288ef14c0d5d (patch) | |
tree | 0b3c8d0cf413c47234b46ebd426643c243b0af9f /vcl | |
parent | ee0cfd7fc843d34a04eb9bd2bedcfc1993691aba (diff) |
The pExceptionHandler variable can be static
Change-Id: I83f2531e092eaa610cf887937c803e11c6120e55
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/app/svmain.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/app/svmain.cxx b/vcl/source/app/svmain.cxx index aee0b9123edd..360dc6a3f8fd 100644 --- a/vcl/source/app/svmain.cxx +++ b/vcl/source/app/svmain.cxx @@ -201,7 +201,7 @@ int SVMain() static Application * pOwnSvApp = NULL; // Exception handler. pExceptionHandler != NULL => VCL already inited -oslSignalHandler pExceptionHandler = NULL; +static oslSignalHandler pExceptionHandler = NULL; class DesktopEnvironmentContext: public cppu::WeakImplHelper1< com::sun::star::uno::XCurrentContext > { |