Skip to content
This repository has been archived by the owner on Jul 21, 2018. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
andre-simon committed Jul 25, 2017
2 parents 4126308 + 2e9e954 commit 9ab1a27
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ $(EXECUTABLE): $(OBJECTS)
$(CC) $(LDFLAGS) $(EXTRA_LDFLAGS) $(OBJECTS) -o $@

.cpp.o:
$(CC) -c $(CXXFLAGS) $< -o $@
$(CC) -c $(CXXFLAGS) $(EXTRA_CXXFLAGS) $< -o $@

clean:
@rm -f *.o
Expand Down
2 changes: 1 addition & 1 deletion src/pangogenerator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ string PangoGenerator::getOpenTag()
<< "\"";
}
if (elementStyle.isBgColorSet()) {
fmtStream <<" bgcolor=#\""
fmtStream <<" bgcolor=\"#"
<< elementStyle.getBgColour().getRed(HTML)
<< elementStyle.getBgColour().getGreen(HTML)
<< elementStyle.getBgColour().getBlue(HTML)
Expand Down

0 comments on commit 9ab1a27

Please sign in to comment.