summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Zhulanov <dmitry.zhulanov@gmail.com>2016-10-01 09:01:18 +0000
committerDmitry Zhulanov <dmitry.zhulanov@gmail.com>2016-10-01 09:01:18 +0000
commitea38e86ebfbcc53d86433fddbffffbfb5403c9fc (patch)
treec944d47521c77de2f6bea22410c948c4469c7e45
parentdisable xverb feature if WITH_YAML defined (diff)
downloadinkscape-ea38e86ebfbcc53d86433fddbffffbfb5403c9fc.tar.gz
inkscape-ea38e86ebfbcc53d86433fddbffffbfb5403c9fc.zip
fix indent
(bzr r15136.1.10)
-rw-r--r--src/main-cmdlinexact.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main-cmdlinexact.cpp b/src/main-cmdlinexact.cpp
index 3dc83bc8f..f29d22377 100644
--- a/src/main-cmdlinexact.cpp
+++ b/src/main-cmdlinexact.cpp
@@ -316,8 +316,8 @@ typedef std::list<verb_info_t> verbs_list_t;
void
CmdLineXAction::createActionsFromYAML( gchar const *yaml_filename ) {
#ifndef WITH_YAML
- return;
-#else // WITH_YAML
+ return;
+#else // WITH_YAML
FILE *fh = fopen(yaml_filename, "r");
if(fh == NULL) {
printf("Failed to open file!\n");
@@ -527,7 +527,7 @@ CmdLineXAction::createActionsFromYAML( gchar const *yaml_filename ) {
{
++undo_counter;
new CmdLineAction(true, verb.args[0].c_str());
- }
+ }
else {
printf("Unhadled xverb %s\n", verb.args[0].c_str());
fflush(stdout);