diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-11 13:09:16 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-12 08:59:04 +0200 |
commit | 45529c976bc834e1b9b6556daf529a19d006485e (patch) | |
tree | fc46690ebb591a1df95b19a519a1be17fc3e1306 /dbaccess/source | |
parent | 878748d82dbad62781f0c81618781262fe0a149a (diff) |
coverity#705143 missing break in switch
Change-Id: I3155c4a61b63d2b0717b135d692141029fef5c73
Diffstat (limited to 'dbaccess/source')
-rw-r--r-- | dbaccess/source/ui/control/FieldDescControl.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dbaccess/source/ui/control/FieldDescControl.cxx b/dbaccess/source/ui/control/FieldDescControl.cxx index 5dfcc96ac919..2f33b1689328 100644 --- a/dbaccess/source/ui/control/FieldDescControl.cxx +++ b/dbaccess/source/ui/control/FieldDescControl.cxx @@ -501,6 +501,7 @@ OUString OFieldDescControl::GetControlText( sal_uInt16 nControlId ) case FIELD_PROPERTY_TEXTLEN: if (pTextLen) return OUString::number(pTextLen->GetValue()); + break; case FIELD_PROPERTY_NUMTYPE: if (pNumType) return pNumType->GetSelectEntry(); |