From 0c9e861caa8b1eed5068942edc35d5f91bac816e Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 10 May 2012 06:24:07 +0000 Subject: Work towards translatable strings and a cleaner log interface. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4338 a436a847-0d15-0410-975c-d299462d15a1 --- src/gui/App.cpp | 6 +++--- src/gui/PatchView.cpp | 2 +- src/gui/Port.cpp | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) (limited to 'src/gui') diff --git a/src/gui/App.cpp b/src/gui/App.cpp index c4c9cfe6..3b3fa6f9 100644 --- a/src/gui/App.cpp +++ b/src/gui/App.cpp @@ -47,7 +47,7 @@ #include "WidgetFactory.hpp" #include "WindowFactory.hpp" -#define LOG(s) s << "[GUI] " +#define LOG(s) (s("[GUI] ")) using namespace std; using namespace Raul; @@ -149,7 +149,7 @@ App::run() break; _main->run(); - LOG(info) << "Exiting" << endl; + LOG(info)("Exiting\n"); } void @@ -226,7 +226,7 @@ App::property_change(const Raul::URI& subject, { if (subject == uris().ingen_engine && key == uris().ingen_sampleRate) { if (value.type() == forge().Int) { - LOG(info) << "Sample rate: " << uris().forge.str(value) << std::endl; + LOG(info)(Raul::fmt("Sample rate: %1%\n") % uris().forge.str(value)); _sample_rate = value.get_int32(); } else { error << "Engine sample rate property is not an integer" << std::endl; diff --git a/src/gui/PatchView.cpp b/src/gui/PatchView.cpp index 282e83bc..4d54f4dc 100644 --- a/src/gui/PatchView.cpp +++ b/src/gui/PatchView.cpp @@ -181,7 +181,7 @@ void PatchView::refresh_clicked() { _app->engine()->get(_patch->path()); - Raul::warn << "Refresh plugins" << std::endl; + Raul::warn("Refreshing plugins\n"); _app->engine()->get("ingen:plugins"); } diff --git a/src/gui/Port.cpp b/src/gui/Port.cpp index c9c858cb..7d84abca 100644 --- a/src/gui/Port.cpp +++ b/src/gui/Port.cpp @@ -136,7 +136,7 @@ void Port::on_value_changed(GVariant* value) { if (!g_variant_is_of_type(value, G_VARIANT_TYPE_DOUBLE)) { - Raul::warn << "TODO: Non-float port value changed." << std::endl; + Raul::warn("TODO: Non-float port value changed\n"); return; } -- cgit v1.2.1