summaryrefslogtreecommitdiff
path: root/xmloff/source/xforms/xformsapi.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/xforms/xformsapi.cxx')
-rw-r--r--xmloff/source/xforms/xformsapi.cxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/xmloff/source/xforms/xformsapi.cxx b/xmloff/source/xforms/xformsapi.cxx
index 794798c5366a..4d23ba45d3d9 100644
--- a/xmloff/source/xforms/xformsapi.cxx
+++ b/xmloff/source/xforms/xformsapi.cxx
@@ -1,3 +1,4 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -116,6 +117,7 @@ void lcl_addXFormsModel(
// TODO: implement proper error handling
DBG_ASSERT( bSuccess, "can't import model" );
+ (void)bSuccess;
}
Reference<XPropertySet> lcl_findXFormsBindingOrSubmission(
@@ -342,7 +344,9 @@ rtl::OUString lcl_getBasicTypeName(
}
catch( const Exception& )
{
- DBG_ERROR( "exception during type creation" );
+ OSL_FAIL( "exception during type creation" );
}
return sTypeName;
}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */