diff options
author | Szymon Kłos <eszkadev@gmail.com> | 2015-07-10 13:20:06 +0200 |
---|---|---|
committer | Szymon Kłos <eszkadev@gmail.com> | 2015-07-16 09:53:44 +0200 |
commit | 331c1633b49f6c2110fb249709c9430a4f2efd89 (patch) | |
tree | 28bc932efae5d2f168d74956e9d6b27fdf34dd9a | |
parent | d58582a6ce0b85fd6cf699d3c935fe4c7257c5b4 (diff) |
Check if OK button should be enabled after changing service type
Change-Id: I64ce981846f4107c8f38e413f1e6eb9e5616ef87
-rw-r--r-- | svtools/source/dialogs/PlaceEditDialog.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/svtools/source/dialogs/PlaceEditDialog.cxx b/svtools/source/dialogs/PlaceEditDialog.cxx index bbc1f43a804b..0d1dced12351 100644 --- a/svtools/source/dialogs/PlaceEditDialog.cxx +++ b/svtools/source/dialogs/PlaceEditDialog.cxx @@ -258,6 +258,9 @@ IMPL_LINK_NOARG( PlaceEditDialog, SelectTypeHdl ) m_xCurrentDetails->show(true); SetSizePixel(GetOptimalSize()); + + EditHdl(NULL); + return 0; } |