diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2013-05-11 15:16:58 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2013-05-11 15:16:58 +0200 |
commit | 8ca5a095d58313182c53261d104899018fc4f48e (patch) | |
tree | 7c38628139b9c24ea588a22807e6e215401704d6 | |
parent | 1e0863c962a6a33a4c52b72b3f74dc025525cd30 (diff) |
Remove errornous debug output.
-rw-r--r-- | plugingui/listboxbasic.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugingui/listboxbasic.cc b/plugingui/listboxbasic.cc index 544fd96..9153907 100644 --- a/plugingui/listboxbasic.cc +++ b/plugingui/listboxbasic.cc @@ -1,3 +1,4 @@ + /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /*************************************************************************** * listboxbasic.cc @@ -84,7 +85,7 @@ void GUI::ListBoxBasic::addItem(std::string name, std::string value) void GUI::ListBoxBasic::addItems(std::vector<GUI::ListBoxBasic::Item> &is) { - DEBUG(list, "addItems %lu\n", is.size()); + // DEBUG(list, "addItems %lu\n", is.size()); std::vector<GUI::ListBoxBasic::Item>::iterator i = is.begin(); while(i != is.end()) { items.push_back(*i); |