diff options
author | Rachit Gupta <rachitgupta1792@gmail.com> | 2014-06-15 10:56:16 +0530 |
---|---|---|
committer | Jan Holesovsky <kendy@collabora.com> | 2014-08-14 19:43:27 +0200 |
commit | d38a3594c2811782e1bc2c3558d6ed655a439d15 (patch) | |
tree | e9089c74ff8d2a814139b3da2b611ae53969c6fd /cui | |
parent | ad9bfe8ff76bd8e3f6011d827e63c9ad676a0f00 (diff) |
Fixed Bug: SelectPersonaDialog was not closing on clicking OK.
The dialog did not close on clicking OK if nothing was selected or if
nothing was searched. It does now.
Change-Id: I92f777bca8f306fea8da3ebd18ca41c34443a733
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/options/personalization.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cui/source/options/personalization.cxx b/cui/source/options/personalization.cxx index 52e52b314f38..cf4d78017ddf 100644 --- a/cui/source/options/personalization.cxx +++ b/cui/source/options/personalization.cxx @@ -315,8 +315,9 @@ IMPL_LINK( SvxPersonalizationTabPage, SelectPersona, PushButton*, /*pButton*/ ) if ( !aPersonaSetting.isEmpty() ) { m_aPersonaSettings = aPersonaSetting; - break; } + + break; } return 0; |