summaryrefslogtreecommitdiff
path: root/vcl/workben
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2016-02-06 13:13:23 +1100
committerChris Sherlock <chris.sherlock79@gmail.com>2016-02-06 13:13:23 +1100
commit5e971b274922f9713aefcd5f612459ffced84845 (patch)
treeaad062853f5840a89694b22df87de4e07a20b44f /vcl/workben
parent249e3d6d1927705aac81fa7f40fccc5c82be43d7 (diff)
vcl: rename EXC_* constants to EXCEPTION_*, EXC is too much like 'execute'
Change-Id: I2f79e0419b27391cc9bdc45576e67eecdbc9efa4
Diffstat (limited to 'vcl/workben')
-rw-r--r--vcl/workben/outdevgrind.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/workben/outdevgrind.cxx b/vcl/workben/outdevgrind.cxx
index a1f074ae6eb6..03e2af70377e 100644
--- a/vcl/workben/outdevgrind.cxx
+++ b/vcl/workben/outdevgrind.cxx
@@ -832,9 +832,9 @@ void TestWindow::Paint(vcl::RenderContext& rRenderContext, const Rectangle&)
void GrindApp::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;
}