summaryrefslogtreecommitdiff
path: root/forms
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@suse.com>2011-12-12 19:14:48 +0200
committerTor Lillqvist <tlillqvist@suse.com>2011-12-12 22:14:54 +0200
commit01fd335473bfb52882f30ff2278cec1da129e978 (patch)
treec7754d21c9b6190840b50ef430140791208a3d30 /forms
parent3e2aec1a5437a930325e3eb715cec3a61497d92d (diff)
WaE: NULL used in arithmetic
Diffstat (limited to 'forms')
-rw-r--r--forms/source/xforms/propertysetbase.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/forms/source/xforms/propertysetbase.hxx b/forms/source/xforms/propertysetbase.hxx
index 27556b1381f8..ca09b5e3517c 100644
--- a/forms/source/xforms/propertysetbase.hxx
+++ b/forms/source/xforms/propertysetbase.hxx
@@ -114,7 +114,7 @@ public:
virtual bool isWriteable() const
{
- return m_pWriter != NULL;
+ return m_pWriter != 0;
}
};