From 5e971b274922f9713aefcd5f612459ffced84845 Mon Sep 17 00:00:00 2001 From: Chris Sherlock Date: Sat, 6 Feb 2016 13:13:23 +1100 Subject: vcl: rename EXC_* constants to EXCEPTION_*, EXC is too much like 'execute' Change-Id: I2f79e0419b27391cc9bdc45576e67eecdbc9efa4 --- slideshow/test/demoshow.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'slideshow/test') 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; } -- cgit