Compile - looks like kdeartwork doesn't use -DQT_NO_ASCII_CAST ??
svn path=/trunk/kdebase/kwin/; revision=347288
This commit is contained in:
parent
5640dbc81b
commit
dc49f68c35
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ void PlastikConfig::load(KConfig*)
|
||||||
|
|
||||||
|
|
||||||
QString value = m_config->readEntry("TitleAlignment", "AlignHCenter");
|
QString value = m_config->readEntry("TitleAlignment", "AlignHCenter");
|
||||||
QRadioButton *button = (QRadioButton*)m_dialog->titleAlign->child(value);
|
QRadioButton *button = (QRadioButton*)m_dialog->titleAlign->child(value.latin1());
|
||||||
if (button) button->setChecked(true);
|
if (button) button->setChecked(true);
|
||||||
bool animateButtons = m_config->readBoolEntry("AnimateButtons", true);
|
bool animateButtons = m_config->readBoolEntry("AnimateButtons", true);
|
||||||
m_dialog->animateButtons->setChecked(animateButtons);
|
m_dialog->animateButtons->setChecked(animateButtons);
|
||||||
|
|
Loading…
Reference in a new issue