diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-02-06 13:13:23 +1100 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-02-06 13:13:23 +1100 |
commit | 5e971b274922f9713aefcd5f612459ffced84845 (patch) | |
tree | aad062853f5840a89694b22df87de4e07a20b44f /slideshow/test | |
parent | 249e3d6d1927705aac81fa7f40fccc5c82be43d7 (diff) |
vcl: rename EXC_* constants to EXCEPTION_*, EXC is too much like 'execute'
Change-Id: I2f79e0419b27391cc9bdc45576e67eecdbc9efa4
Diffstat (limited to 'slideshow/test')
-rw-r--r-- | slideshow/test/demoshow.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/slideshow/test/demoshow.cxx b/slideshow/test/demoshow.cxx index 9b4dc810beb7..17560f8bc5ea 100644 --- a/slideshow/test/demoshow.cxx +++ b/slideshow/test/demoshow.cxx @@ -483,9 +483,9 @@ void DemoWindow::Resize() sal_uInt16 DemoApp::Exception( sal_uInt16 nError ) { - switch( nError & EXC_MAJORTYPE ) + switch( nError & EXCEPTION_MAJORTYPE ) { - case EXC_RSCNOTLOADED: + case EXCEPTION_RESOURCENOTLOADED: Abort( "Error: could not load language resources.\nPlease check your installation.\n" ); break; } |