diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-08-15 13:41:52 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-08-16 08:55:47 +0200 |
commit | 4f286af9e85e979382e2c1cea7e0b80640044234 (patch) | |
tree | 8eb70b48178b5f78023153956d89d3381266d286 | |
parent | 87b04949ee633c9bd8f1407394a104ec70e4031d (diff) |
fix bug in SwCTBWrapper::ImportCustomToolBar
the code structure here and at the callsite indicats that wants true to
mean "successfully imported"
Change-Id: Ibe3242e85ed970494c2ee0deb4b898db0fe85d0d
Reviewed-on: https://gerrit.libreoffice.org/59130
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
-rw-r--r-- | sw/source/filter/ww8/ww8toolbar.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/ww8toolbar.cxx b/sw/source/filter/ww8/ww8toolbar.cxx index a807a6b35489..fa868eda0350 100644 --- a/sw/source/filter/ww8/ww8toolbar.cxx +++ b/sw/source/filter/ww8/ww8toolbar.cxx @@ -205,7 +205,7 @@ bool SwCTBWrapper::ImportCustomToolBar( SfxObjectShell& rDocSh ) continue; } } - return false; + return true; } Customization::Customization( SwCTBWrapper* wrapper ) |