summaryrefslogtreecommitdiffstats
path: root/src/ui/widget/preferences-widget.cpp
diff options
context:
space:
mode:
authorJabiertxo Arraiza Cenoz <jtx@jtx.markerlab.es>2018-07-26 08:04:27 +0000
committerJabiertxo Arraiza Cenoz <jtx@jtx.markerlab.es>2018-07-26 08:04:27 +0000
commit8b815c6cf0f58998a03518ab33263f47e3544e93 (patch)
treea7dc2fb7ed40ac5c6f7637aaa96a16e3c0607cb7 /src/ui/widget/preferences-widget.cpp
parentfix a string (diff)
downloadinkscape-8b815c6cf0f58998a03518ab33263f47e3544e93.tar.gz
inkscape-8b815c6cf0f58998a03518ab33263f47e3544e93.zip
fix coding style
Diffstat (limited to 'src/ui/widget/preferences-widget.cpp')
-rw-r--r--src/ui/widget/preferences-widget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/widget/preferences-widget.cpp b/src/ui/widget/preferences-widget.cpp
index 6e1c619d5..c2cc34f52 100644
--- a/src/ui/widget/preferences-widget.cpp
+++ b/src/ui/widget/preferences-widget.cpp
@@ -902,7 +902,7 @@ void PrefOpenFolder::init(Glib::ustring const &entry_string, Glib::ustring const
void PrefOpenFolder::onRelatedButtonClickedCallback()
{
g_mkdir_with_parents(relatedEntry->get_text().c_str(), 0700);
- //https://stackoverflow.com/questions/42442189/how-to-open-spawn-a-file-with-glib-gtkmm-in-windows
+ // https://stackoverflow.com/questions/42442189/how-to-open-spawn-a-file-with-glib-gtkmm-in-windows
#ifdef WIN32
ShellExecute(NULL, "open", relatedEntry->get_text().c_str(), NULL, NULL, SW_SHOWDEFAULT);
#elif defined(__APPLE__)