From 009803005385d599007adcee3c4eda25f84b327d Mon Sep 17 00:00:00 2001 From: Jabiertxof Date: Thu, 20 Jun 2019 22:11:06 +0200 Subject: Fix coding style --- src/object/sp-style-elem.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/object/sp-style-elem.cpp') diff --git a/src/object/sp-style-elem.cpp b/src/object/sp-style-elem.cpp index dc9712938..3b93ff190 100644 --- a/src/object/sp-style-elem.cpp +++ b/src/object/sp-style-elem.cpp @@ -203,14 +203,14 @@ import_style_cb (CRDocHandler *a_handler, CRStatus const parse_status = cr_parser_parse_file (parser, reinterpret_cast(import_file.c_str()), CR_UTF_8); if (parse_status == CR_OK) { - if(!document->getStyleSheet()) { + if (!document->getStyleSheet()) { // if the style is the first style sheet that we've seen, set the document's // first style sheet to this style and create a cascade object with it. document->setStyleSheet(stylesheet); - cr_cascade_set_sheet (document->getStyleCascade(), document->getStyleSheet(), ORIGIN_AUTHOR); + cr_cascade_set_sheet(document->getStyleCascade(), document->getStyleSheet(), ORIGIN_AUTHOR); } else { // If not the first, then chain up this style_sheet - cr_stylesheet_append_import (document->getStyleSheet(), stylesheet); + cr_stylesheet_append_import(document->getStyleSheet(), stylesheet); } } else { std::cerr << "import_style_cb: Could not parse: " << import_file << std::endl; -- cgit v1.2.3