From 9be25f14bdd801106efcfae34c8f1492cddfa714 Mon Sep 17 00:00:00 2001 From: Luboš Luňák Date: Mon, 18 Mar 2013 17:05:51 +0100 Subject: avoid Wundef for various FIXME, FEATURE_NOT_DONE_YET and what not Change-Id: I8e409ba63d32dca9a1c7f09d143165d1d702d642 --- toolkit/source/awt/scrollabledialog.cxx | 2 +- toolkit/source/awt/vclxtoolkit.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'toolkit') diff --git a/toolkit/source/awt/scrollabledialog.cxx b/toolkit/source/awt/scrollabledialog.cxx index 968ec9f8a716..91edeffecf77 100644 --- a/toolkit/source/awt/scrollabledialog.cxx +++ b/toolkit/source/awt/scrollabledialog.cxx @@ -176,7 +176,7 @@ void ScrollableWrapper::ResetScrollBars() } template class ScrollableWrapper< Dialog >; -#if SCROLLABLEFRAME +#ifdef SCROLLABLEFRAME template class ScrollableWrapper< GroupBox >; #endif diff --git a/toolkit/source/awt/vclxtoolkit.cxx b/toolkit/source/awt/vclxtoolkit.cxx index eaba013c30a4..cb6668d85194 100644 --- a/toolkit/source/awt/vclxtoolkit.cxx +++ b/toolkit/source/awt/vclxtoolkit.cxx @@ -692,7 +692,7 @@ Window* VCLXToolkit::ImplCreateWindow( VCLXWindow** ppNewComp, break; case WINDOW_GROUPBOX: { -#if SCROLLABLEFRAME +#ifdef SCROLLABLEFRAME if ( bFrameControl ) { pNewWindow = new toolkit::ScrollableWrapper< GroupBox >( pParent, nWinBits | WB_VSCROLL ); -- cgit