From: Uwe Stöhr Date: Fri, 2 Apr 2010 23:50:39 +0000 (+0000) Subject: GuiDocument.cpp: follow Qt's StyleSheet guideline and use the the explicit "backgroun... X-Git-Tag: 2.0.0~3555 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=5ed3236425fcadce8112c23545f4adf6a6a2ae03;p=features.git GuiDocument.cpp: follow Qt's StyleSheet guideline and use the the explicit "background-color" string git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34045 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/frontends/qt4/GuiDocument.cpp b/src/frontends/qt4/GuiDocument.cpp index 035c131983..47a055bcc4 100644 --- a/src/frontends/qt4/GuiDocument.cpp +++ b/src/frontends/qt4/GuiDocument.cpp @@ -79,7 +79,7 @@ static inline QString colorButtonStyleSheet(QColor const & bgColor) { if (bgColor.isValid()) { - QString rc = QLatin1String("background:"); + QString rc = QLatin1String("background-color:"); rc += bgColor.name(); return rc; }