summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/debug.cpp
diff options
context:
space:
mode:
authorKris De Gussem <kris.degussem@gmail.com>2012-02-06 15:06:17 +0000
committerKris <Kris.De.Gussem@hotmail.com>2012-02-06 15:06:17 +0000
commitda71443f77f499468d48b3f404eb6c59851eef8a (patch)
tree7635b5003762929196a29b91ed0db77ab9b21bd3 /src/ui/dialog/debug.cpp
parentUnwanted output in documentation dropped (diff)
downloadinkscape-da71443f77f499468d48b3f404eb6c59851eef8a.tar.gz
inkscape-da71443f77f499468d48b3f404eb6c59851eef8a.zip
(cppcheck and janitorial tasks:) C-style casting to C++-style casting
(bzr r10946)
Diffstat (limited to 'src/ui/dialog/debug.cpp')
-rw-r--r--src/ui/dialog/debug.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/dialog/debug.cpp b/src/ui/dialog/debug.cpp
index 426cd5d99..8ffbd5c52 100644
--- a/src/ui/dialog/debug.cpp
+++ b/src/ui/dialog/debug.cpp
@@ -167,7 +167,7 @@ void dialogLoggingFunction(const gchar */*log_domain*/,
const gchar *messageText,
gpointer user_data)
{
- DebugDialogImpl *dlg = (DebugDialogImpl *)user_data;
+ DebugDialogImpl *dlg = static_cast<DebugDialogImpl *>(user_data);
dlg->message(messageText);
}