diff options
author | Matteo Casalin <matteo.casalin@yahoo.com> | 2018-11-07 22:28:55 +0100 |
---|---|---|
committer | Matteo Casalin <matteo.casalin@yahoo.com> | 2018-11-10 22:04:03 +0100 |
commit | e0c656aa3f6a1bb0783e059ad649c8a55edefc4b (patch) | |
tree | 55755ca5ca3af405571e828fee5cfb95dede677e | |
parent | c6665a1afef58e99d56b07a776964445689c22ca (diff) |
Fix double ;
Change-Id: I8009565c5ae2580d0cdbf3b323b95d61c25c0dcd
-rw-r--r-- | dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx b/dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx index 97874d5f0c59..e62fdceaa065 100644 --- a/dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx +++ b/dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx @@ -185,7 +185,7 @@ void OSelectionBrowseBox::initialize() ,IParseContext::InternationalKeyCode::Intersection }; - OUString sGroup = m_aFunctionStrings.copy(m_aFunctionStrings.lastIndexOf(';')+1);; + OUString sGroup = m_aFunctionStrings.copy(m_aFunctionStrings.lastIndexOf(';')+1); m_aFunctionStrings = m_aFunctionStrings.getToken(0, ';'); for (IParseContext::InternationalKeyCode eFunction : eFunctions) |