summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-12-01 11:48:22 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-12-01 11:48:22 +0100
commit4c03d837eb19e3a7d38e26ebac9740cb58f5d03c (patch)
tree064803d16a78f4330c5553a5a39fcddc606ebc7d
parentd308906df6a6b4d44aa9974825765174ba2bc7e3 (diff)
-Werror,-Wswitch
Change-Id: Iad8c17f8d69d51d55c6cdf2ed355cda140399337
-rw-r--r--dbaccess/source/ui/misc/WTypeSelect.cxx2
-rw-r--r--dbaccess/source/ui/querydesign/JoinTableView.cxx2
-rw-r--r--dbaccess/source/ui/querydesign/limitboxcontroller.cxx2
3 files changed, 6 insertions, 0 deletions
diff --git a/dbaccess/source/ui/misc/WTypeSelect.cxx b/dbaccess/source/ui/misc/WTypeSelect.cxx
index 1adeadf5db6d..40e2227fd3ea 100644
--- a/dbaccess/source/ui/misc/WTypeSelect.cxx
+++ b/dbaccess/source/ui/misc/WTypeSelect.cxx
@@ -430,6 +430,8 @@ bool OWizTypeSelectList::PreNotify( NotifyEvent& rEvt )
nDone = true;
}
break;
+ default:
+ break;
}
return nDone || MultiListBox::PreNotify(rEvt);
}
diff --git a/dbaccess/source/ui/querydesign/JoinTableView.cxx b/dbaccess/source/ui/querydesign/JoinTableView.cxx
index c2dd15dee41a..8f6dc070876e 100644
--- a/dbaccess/source/ui/querydesign/JoinTableView.cxx
+++ b/dbaccess/source/ui/querydesign/JoinTableView.cxx
@@ -1418,6 +1418,8 @@ bool OJoinTableView::PreNotify(NotifyEvent& rNEvt)
}
}
break;
+ default:
+ break;
}
if (!bHandled)
diff --git a/dbaccess/source/ui/querydesign/limitboxcontroller.cxx b/dbaccess/source/ui/querydesign/limitboxcontroller.cxx
index 5b767649471c..ad460ffedbf1 100644
--- a/dbaccess/source/ui/querydesign/limitboxcontroller.cxx
+++ b/dbaccess/source/ui/querydesign/limitboxcontroller.cxx
@@ -84,6 +84,8 @@ bool LimitBoxImpl::Notify( NotifyEvent& rNEvt )
}
break;
}
+ default:
+ break;
}
return nHandled || LimitBox::Notify( rNEvt );
}