summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-03-13 10:50:28 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-03-13 10:53:28 +0100
commitee11e221d2108212619e1bbe7f029e7d9afdba32 (patch)
tree65e77bfcd7fc7a4ca7e1c111cc8707615bc0d613 /framework
parente37388c7de15242b7af0bf9fdc48c6d194d8cd94 (diff)
tdf#43157: Fix format string violations in OSL_TRACE etc.
...in preparation of enabling the __attribute__((format(...))) in sal_detail_logFormat (include/sal/detail/log.h) Change-Id: I8a859199fa11ca0f9f4f4b4b23a8ebddec955a86
Diffstat (limited to 'framework')
-rw-r--r--framework/source/uielement/generictoolbarcontroller.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/source/uielement/generictoolbarcontroller.cxx b/framework/source/uielement/generictoolbarcontroller.cxx
index c7a5a86df447..f72ae03d5e16 100644
--- a/framework/source/uielement/generictoolbarcontroller.cxx
+++ b/framework/source/uielement/generictoolbarcontroller.cxx
@@ -327,12 +327,12 @@ class Toolbarmenu : public ::PopupMenu
Toolbarmenu::Toolbarmenu()
{
- OSL_TRACE("**** contstructing Toolbarmenu 0x%x", this );
+ SAL_INFO("fwk.uielement", "contstructing Toolbarmenu " << this);
}
Toolbarmenu::~Toolbarmenu()
{
- OSL_TRACE("**** destructing Toolbarmenu 0x%x", this );
+ SAL_INFO("fwk.uielement", "destructing Toolbarmenu " << this);
}
void SAL_CALL MenuToolbarController::click() throw (RuntimeException, std::exception)