summaryrefslogtreecommitdiffstats
path: root/svx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-02-16 13:39:28 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-02-17 07:52:09 +0200
commit1920061bb2f35df638a638ffebae25245e6ec450 (patch)
tree52836ddb42f4aed479f0ccd99fa25d067d107229 /svx
parentremove unused enumerators from SQLNodeType (diff)
downloadcore-1920061bb2f35df638a638ffebae25245e6ec450.tar.gz
core-1920061bb2f35df638a638ffebae25245e6ec450.zip
remove unused None from ErrorCode
Change-Id: Iab5bf1a34fa07c851067fe30df875e821583038b
Diffstat (limited to 'svx')
-rw-r--r--svx/source/form/ParseContext.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/form/ParseContext.cxx b/svx/source/form/ParseContext.cxx
index b02413e1496c..c5a2654750ba 100644
--- a/svx/source/form/ParseContext.cxx
+++ b/svx/source/form/ParseContext.cxx
@@ -68,7 +68,7 @@ OUString OSystemParseContext::getErrorMessage(ErrorCode _eCode) const
case ErrorCode::InvalidColumn: aMsg = SVX_RESSTR(RID_STR_SVT_SQL_SYNTAX_COLUMN); break;
case ErrorCode::InvalidTableExist: aMsg = SVX_RESSTR(RID_STR_SVT_SQL_SYNTAX_TABLE_EXISTS); break;
case ErrorCode::InvalidQueryExist: aMsg = SVX_RESSTR(RID_STR_SVT_SQL_SYNTAX_QUERY_EXISTS); break;
- case ErrorCode::None: break;
+ default: break;
}
return aMsg;
}