summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/styledialog.cpp
diff options
context:
space:
mode:
authorJabier Arraiza <jabier.arraiza@marker.es>2018-12-22 23:12:49 +0000
committerJabiertxof <jabier.arraiza@marker.es>2019-02-20 15:35:31 +0000
commitba1ca09314678c3b9324272cd6cf51e6028e7c66 (patch)
treec852694cb59754add6ed0aaba0014edb3e481253 /src/ui/dialog/styledialog.cpp
parentSmall change to hover text (diff)
downloadinkscape-ba1ca09314678c3b9324272cd6cf51e6028e7c66.tar.gz
inkscape-ba1ca09314678c3b9324272cd6cf51e6028e7c66.zip
minor fixes
Diffstat (limited to 'src/ui/dialog/styledialog.cpp')
-rw-r--r--src/ui/dialog/styledialog.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/dialog/styledialog.cpp b/src/ui/dialog/styledialog.cpp
index 7d5bf53a7..d5769b955 100644
--- a/src/ui/dialog/styledialog.cpp
+++ b/src/ui/dialog/styledialog.cpp
@@ -500,7 +500,7 @@ void StyleDialog::_writeStyleElement()
DocumentUndo::done(SP_ACTIVE_DOCUMENT, SP_VERB_DIALOG_STYLE, _("Edited style element."));
_updating = false;
- g_debug("StyleDialog::_writeStyleElement(): | %s |", styleContent);
+ g_debug("StyleDialog::_writeStyleElement(): | %s |", styleContent.c_str());
}
@@ -537,7 +537,7 @@ void StyleDialog::_updateWatchers()
Inkscape::XML::Node *root = SP_ACTIVE_DOCUMENT->getReprRoot();
_addWatcherRecursive(root);
- g_debug("StyleDialog::_updateWatchers(): %d", _nodeWatchers.size());
+ g_debug("StyleDialog::_updateWatchers(): %d", (int)_nodeWatchers.size());
_updating = false;
}
@@ -733,7 +733,7 @@ std::vector<SPObject *> StyleDialog::_getObjVec(Glib::ustring selector) {
std::vector<SPObject *> objVec = SP_ACTIVE_DOCUMENT->getObjectsBySelector( selector );
- g_debug("StyleDialog::_getObjVec: | %s |", selector);
+ g_debug("StyleDialog::_getObjVec: | %s |", selector.c_str());
for (auto& obj: objVec) {
g_debug(" %s", obj->getId() ? obj->getId() : "null");
}