summaryrefslogtreecommitdiffhomepage
path: root/opentrack/options.hpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2015-03-13 23:42:06 +0100
committerStanislaw Halik <sthalik@misaki.pl>2015-03-13 23:42:06 +0100
commit851c87c8653c3badda7cb0621e6c247cbbc41832 (patch)
treee4f534878414f5495161d07714196f56ee85fe92 /opentrack/options.hpp
parentc1a76c75df5ae4f0624d8456b336ecee2514c357 (diff)
move debug to right place
Diffstat (limited to 'opentrack/options.hpp')
-rw-r--r--opentrack/options.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/opentrack/options.hpp b/opentrack/options.hpp
index 16760df5..5eae754f 100644
--- a/opentrack/options.hpp
+++ b/opentrack/options.hpp
@@ -243,6 +243,8 @@ namespace options {
if (implsgl_data.count(key) != 0)
return std::get<1>(implsgl_data[key]);
+
+ qDebug() << "bundle +" << QString::fromStdString(key);
auto shr = std::make_shared<v>(key);
implsgl_data[key] = tt(cnt(1), shr);
@@ -272,7 +274,6 @@ namespace options {
opt_bundle() : impl_bundle("i-have-no-name") {}
opt_bundle(const string& group_name) : impl_bundle(group_name)
{
- qDebug() << "bundle +" << QString::fromStdString(group_name);
}
~opt_bundle()