summaryrefslogtreecommitdiff
path: root/mysqlc
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2012-08-13 15:04:39 +0200
committerStephan Bergmann <sbergman@redhat.com>2012-08-14 10:39:13 +0200
commited93117447a3217fab0e2425f8761e24423024b5 (patch)
tree2e178188bef319d1a1e5594acd5732e9959e35a8 /mysqlc
parent9272ce4e6f54bc283bbbe6106f66fd48c4ce8d82 (diff)
fdo#53061: Fix for C++11 #define NULL nullptr
Change-Id: Ia1805aab4bec7fef02c96ec4e7a7a0ed9991d3c3 Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'mysqlc')
-rw-r--r--mysqlc/source/mysqlc_propertyids.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysqlc/source/mysqlc_propertyids.hxx b/mysqlc/source/mysqlc_propertyids.hxx
index 4f88b0cb6380..3118813ccddf 100644
--- a/mysqlc/source/mysqlc_propertyids.hxx
+++ b/mysqlc/source/mysqlc_propertyids.hxx
@@ -136,7 +136,7 @@ enum
//------------------------------------------------------------------------------
#define DECL_PROP1IMPL(varname, type) \
-pProperties[nPos++] = Property(OPropertyMap::getPropMap().getNameByIndex(PROPERTY_ID_##varname), PROPERTY_ID_##varname, ::getCppuType(reinterpret_cast< type*>(NULL)),
+pProperties[nPos++] = Property(OPropertyMap::getPropMap().getNameByIndex(PROPERTY_ID_##varname), PROPERTY_ID_##varname, ::getCppuType(static_cast< type*>(0)),
//------------------------------------------------------------------------------
#define DECL_PROP0(varname, type) \
DECL_PROP1IMPL(varname, type) 0)
Switch VclBuilder constructors to use VclPtr.Michael Meeks 2015-05-11Revert "Switch VclBuilder constructors to use VclPtr."Michael Meeks 2015-05-11Switch VclBuilder constructors to use VclPtr.Michael Meeks 2014-09-23fdo#82577: Handle WindowNoel Grandin 2014-05-20SvxRelativeField: set the unit from the passed stringmapMichael Stahl 2014-03-11svx: sal_Bool->boolNoel Grandin 2014-02-23Remove unneccessary commentsAlexander Wilms 2014-01-28coverity#1028578 : Uninitialized scalar fieldNorbert Thiebaud 2014-01-20Related: #i56998# use FUNIT_PERCENT on fields that allow relative valueTsutomu Uchino 2013-11-14remove unnecessary sal_Unicode casts in SVX moduleNoel Grandin 2013-09-05convert svx/source/dialog/*.cxx from String to OUStringNoel Grandin 2013-07-02remove post .ui conversion unused ResId loadersCaolán McNamara 2013-05-31Convert Paragraph Alignment & Indent to Widget UIOlivier Hallot 2013-04-07mass removal of rtl:: prefixes for O(U)String*Luboš Luňák 2012-11-27re-base on ALv2 code. Includes:Michael Meeks 2012-07-09some UniString->rtl::OUStringCaolán McNamara 2012-06-09Remove superfluous include commentsThomas Arnhold