mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
Cosmetics for r29220.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@29223 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
ed69577fa3
commit
91bcc5cdce
@ -72,14 +72,14 @@
|
||||
|
||||
// a style sheet for buttons
|
||||
// this is for example used for the background color setting button
|
||||
static inline QString colorButtonStyleSheet(const QColor &bgColor)
|
||||
static inline QString colorButtonStyleSheet(QColor const & bgColor)
|
||||
{
|
||||
if (bgColor.isValid()) {
|
||||
if (bgColor.isValid()) {
|
||||
QString rc = QLatin1String("background:");
|
||||
rc += bgColor.name();
|
||||
return rc;
|
||||
}
|
||||
return QLatin1String("");
|
||||
rc += bgColor.name();
|
||||
return rc;
|
||||
}
|
||||
return QLatin1String("");
|
||||
}
|
||||
|
||||
|
||||
@ -1189,14 +1189,14 @@ void GuiDocument::setCustomMargins(bool custom)
|
||||
|
||||
void GuiDocument::changeBackgroundColor()
|
||||
{
|
||||
const QColor newColor = QColorDialog::getColor(
|
||||
QColor const & newColor = QColorDialog::getColor(
|
||||
rgb2qcolor(set_backgroundcolor), qApp->focusWidget());
|
||||
if (!newColor.isValid())
|
||||
return;
|
||||
// set the button color
|
||||
pageLayoutModule->backgroundTB->setStyleSheet(
|
||||
colorButtonStyleSheet(newColor));
|
||||
// save white as the set color
|
||||
// save color
|
||||
set_backgroundcolor = rgbFromHexName(fromqstr(newColor.name()));
|
||||
changed();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user