summaryrefslogtreecommitdiff
path: root/sd/source/ui/sidebar/PanelBase.cxx
diff options
context:
space:
mode:
authorArnaud Versini <arnaud.versini@gmail.com>2013-07-07 10:52:38 +0200
committerPetr Mladek <pmladek@suse.cz>2013-07-09 10:10:39 +0000
commit1a44cf5f6d5a8da224a2e10febaf5b9c989eb9f3 (patch)
treece86ca8be2e21192ecc7618d65be9471f6b39d84 /sd/source/ui/sidebar/PanelBase.cxx
parentd37df8a7e1212560e896620b6fb5abb9db250306 (diff)
Remove warning by using the right printf commands
Change-Id: Id476a0eb1f5965098c8cc2e2847547b1d23387eb Reviewed-on: https://gerrit.libreoffice.org/4753 Reviewed-by: Petr Mladek <pmladek@suse.cz> Tested-by: Petr Mladek <pmladek@suse.cz>
Diffstat (limited to 'sd/source/ui/sidebar/PanelBase.cxx')
-rw-r--r--sd/source/ui/sidebar/PanelBase.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sd/source/ui/sidebar/PanelBase.cxx b/sd/source/ui/sidebar/PanelBase.cxx
index 0c04e97a0363..b358bd992d5e 100644
--- a/sd/source/ui/sidebar/PanelBase.cxx
+++ b/sd/source/ui/sidebar/PanelBase.cxx
@@ -31,7 +31,7 @@ PanelBase::PanelBase (
mxSidebar(),
mrViewShellBase(rViewShellBase)
{
- OSL_TRACE("created PanelBase at %x for parent %x", this, pParentWindow);
+ OSL_TRACE("created PanelBase at %p for parent %p", this, pParentWindow);
#ifdef DEBUG
SetText(OUString("sd:PanelBase"));
@@ -43,9 +43,9 @@ PanelBase::PanelBase (
PanelBase::~PanelBase (void)
{
- OSL_TRACE("deleting wrapped control at %x", mpWrappedControl.get());
+ OSL_TRACE("deleting wrapped control at %p", mpWrappedControl.get());
mpWrappedControl.reset();
- OSL_TRACE("deleting PanelBase at %x from parent %x", this, GetParent());
+ OSL_TRACE("deleting PanelBase at %p from parent %p", this, GetParent());
}
@@ -54,7 +54,7 @@ PanelBase::~PanelBase (void)
void PanelBase::Dispose (void)
{
- OSL_TRACE("PanelBase::DisposeL: deleting wrapped control at %x", mpWrappedControl.get());
+ OSL_TRACE("PanelBase::DisposeL: deleting wrapped control at %p", mpWrappedControl.get());
mpWrappedControl.reset();
}
@@ -113,7 +113,7 @@ bool PanelBase::ProvideWrappedControl (void)
if ( ! mpWrappedControl)
{
mpWrappedControl.reset(CreateWrappedControl(this, mrViewShellBase));
- OSL_TRACE("created wrapped control at %x for parent PanelBase at %x", mpWrappedControl.get(), this);
+ OSL_TRACE("created wrapped control at %p for parent PanelBase at %p", mpWrappedControl.get(), this);
if (mpWrappedControl)
mpWrappedControl->Show();
if (mxSidebar.is())