diff options
| author | Jabier Arraiza <jabier.arraiza@marker.es> | 2018-12-22 23:12:49 +0000 |
|---|---|---|
| committer | Jabiertxof <jabier.arraiza@marker.es> | 2019-02-20 15:35:31 +0000 |
| commit | ba1ca09314678c3b9324272cd6cf51e6028e7c66 (patch) | |
| tree | c852694cb59754add6ed0aaba0014edb3e481253 /src/ui/dialog/styledialog.cpp | |
| parent | Small change to hover text (diff) | |
| download | inkscape-ba1ca09314678c3b9324272cd6cf51e6028e7c66.tar.gz inkscape-ba1ca09314678c3b9324272cd6cf51e6028e7c66.zip | |
minor fixes
Diffstat (limited to 'src/ui/dialog/styledialog.cpp')
| -rw-r--r-- | src/ui/dialog/styledialog.cpp | 6 |
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"); } |
