diff options
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/window/window2.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/window/window2.cxx b/vcl/source/window/window2.cxx index 6b334257afc2..dc3dcdc93db0 100644 --- a/vcl/source/window/window2.cxx +++ b/vcl/source/window/window2.cxx @@ -1532,7 +1532,7 @@ bool Window::set_property(const OString &rKey, const OUString &rValue) set_border_width(rValue.toInt32()); else if (rKey == "margin-start" || rKey == "margin-left") { - //TODO: assert(rKey == "margin-start" && "margin-left deprecated in favor of margin-start"); + assert(rKey == "margin-start" && "margin-left deprecated in favor of margin-start"); set_margin_start(rValue.toInt32()); } else if (rKey == "margin-end" || rKey == "margin-right") |