diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2013-06-07 00:15:16 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2013-06-07 00:15:16 +0200 |
commit | a5b8cc67c448ba724132988302fbfb643d2c1630 (patch) | |
tree | bcb6e64458159f1212e8e62fc02bbcc17ee6ec1a /dbaccess | |
parent | c5b4e516df611cdc84b165da275a812061ee6060 (diff) |
cppcheck: reduce scope
Change-Id: Ia83fb8615dbe937b4b4478fd7bf128780f8c5289
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/dlg/directsql.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/ui/dlg/directsql.cxx b/dbaccess/source/ui/dlg/directsql.cxx index fe5c9721b90f..cccafea250db 100644 --- a/dbaccess/source/ui/dlg/directsql.cxx +++ b/dbaccess/source/ui/dlg/directsql.cxx @@ -240,9 +240,9 @@ DBG_NAME(DirectSQLDialog) // initialise the output line for each row String out = OUString(""); // work along the columns until that are none left - int i = 1; try { + int i = 1; for (;;) { // be dumb, treat everything as a string |