From 5ed3236425fcadce8112c23545f4adf6a6a2ae03 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Uwe=20St=C3=B6hr?= Date: Fri, 2 Apr 2010 23:50:39 +0000 Subject: [PATCH] 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 --- src/frontends/qt4/GuiDocument.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.39.2