Everywhere: Purge spaces in text files

Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2019-03-06 12:38:20 +00:00
commit aa85417a17
96 changed files with 211 additions and 293 deletions

View file

@ -12,9 +12,9 @@ rcc_%.cpp: %.qrc
$(RCC) -o $@ $<
ifeq ($(QT_MAJOR_VERSION),4)
ui_%.h: %.ui
ui_%.h: %.ui
else
%.h: %.ui
%.h: %.ui
endif
$(UIC) $< -o $@
@ -22,7 +22,6 @@ ifeq ($(QT_MAJOR_VERSION),4)
uic_%.cpp: ui_%.h
echo -e "#include \"$<\"\n" > $@
else
uic_%.cpp: %.h %.ui
uic_%.cpp: %.h %.ui
$(UIC) $*.ui -i $< -o $@
endif