diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2013-03-18 17:05:51 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2013-03-18 17:15:56 +0100 |
commit | 9be25f14bdd801106efcfae34c8f1492cddfa714 (patch) | |
tree | 84aa1de48abd7163fdb6fcabdf2c08e20bdd603a /xmlscript | |
parent | a09124e6f585a128b4f130804f4a1f1ee8a31c93 (diff) |
avoid Wundef for various FIXME, FEATURE_NOT_DONE_YET and what not
Change-Id: I8e409ba63d32dca9a1c7f09d143165d1d702d642
Diffstat (limited to 'xmlscript')
-rw-r--r-- | xmlscript/source/xmldlg_imexp/xmldlg_expmodels.cxx | 2 | ||||
-rw-r--r-- | xmlscript/source/xmldlg_imexp/xmldlg_impmodels.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/xmlscript/source/xmldlg_imexp/xmldlg_expmodels.cxx b/xmlscript/source/xmldlg_imexp/xmldlg_expmodels.cxx index 52c6a0d80cfa..30b662836d1e 100644 --- a/xmlscript/source/xmldlg_imexp/xmldlg_expmodels.cxx +++ b/xmlscript/source/xmldlg_imexp/xmldlg_expmodels.cxx @@ -124,7 +124,7 @@ void ElementDescriptor::readFrameModel( StyleBag * all_styles ) title->addAttribute( XMLNS_DIALOGS_PREFIX ":value", aTitle ); addSubElement( title ); } -#if SCROLLABLEFRAME +#ifdef SCROLLABLEFRAME readScrollableSettings(); #endif uno::Reference< container::XNameContainer > xControlContainer( _xProps, uno::UNO_QUERY ); diff --git a/xmlscript/source/xmldlg_imexp/xmldlg_impmodels.cxx b/xmlscript/source/xmldlg_imexp/xmldlg_impmodels.cxx index 93649f57a327..eccf7eaf1b5a 100644 --- a/xmlscript/source/xmldlg_imexp/xmldlg_impmodels.cxx +++ b/xmlscript/source/xmldlg_imexp/xmldlg_impmodels.cxx @@ -97,7 +97,7 @@ void Frame::endElement() { xControlModel->setPropertyValue( "Label" , makeAny( _label ) ); } -#if SCROLLABLEFRAME +#ifdef SCROLLABLEFRAME ctx.importScollableSettings( _xAttributes ); #endif ctx.importEvents( _events ); |