diff -r adab82ab13a5 -r 29eb671b34f6 src/colors.cpp --- a/src/colors.cpp Fri Oct 18 18:16:54 2013 +0300 +++ b/src/colors.cpp Fri Oct 18 21:52:09 2013 +0300 @@ -35,19 +35,16 @@ // ----------------------------------------------------------------------------- void initColors() { LDColor* col; - print ("%1: initializing color information.\n", __func__); + log ("%1: initializing color information.\n", __func__); // Always make sure there's 16 and 24 available. They're special like that. col = new LDColor; - col->faceColor = - col->hexcode = "#AAAAAA"; + col->faceColor = col->hexcode = "#AAAAAA"; col->edgeColor = Qt::black; g_LDColors[maincolor] = col; col = new LDColor; - col->faceColor = - col->edgeColor = - col->hexcode = "#000000"; + col->faceColor = col->edgeColor = col->hexcode = "#000000"; g_LDColors[edgecolor] = col; parseLDConfig();