summaryrefslogtreecommitdiff
path: root/editeng/source/items
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2013-06-01 09:43:50 +0200
committerDavid Tardon <dtardon@redhat.com>2013-06-03 14:31:56 +0200
commit67e87f8b88a5a6a741717cc4a8e64f65f9c9cd52 (patch)
treec168cda1250ec90917ccf0c99769439436314a41 /editeng/source/items
parenta3b384ee41f352b5b99ea1265018f2d14405df65 (diff)
fdo#62224 reconstruct border state for table dialog
Change-Id: I68a4cd1974579119a2d6dccba008441a9bec78df
Diffstat (limited to 'editeng/source/items')
-rw-r--r--editeng/source/items/borderline.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/editeng/source/items/borderline.cxx b/editeng/source/items/borderline.cxx
index 9e1d8f6186d8..70ff3539871e 100644
--- a/editeng/source/items/borderline.cxx
+++ b/editeng/source/items/borderline.cxx
@@ -683,6 +683,11 @@ bool SvxBorderLine::HasPriority( const SvxBorderLine& rOtherLine ) const
return false;
}
+bool operator!=( const SvxBorderLine& rLeft, const SvxBorderLine& rRight )
+{
+ return !(rLeft == rRight);
+}
+
} // namespace editeng
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */