mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-30 05:12:40 +00:00
Fix build with qt4
This commit is contained in:
parent
a05b3228bc
commit
4d3a08bf86
@ -138,8 +138,8 @@ docstring GuiCounter::dialogToParams() const
|
|||||||
|
|
||||||
params["counter"] = qstring_to_ucs4(counterCB->currentText());
|
params["counter"] = qstring_to_ucs4(counterCB->currentText());
|
||||||
params["value"] = convert<docstring>(valueSB->value());
|
params["value"] = convert<docstring>(valueSB->value());
|
||||||
params.setCmdName(fromqstr(actionCB->currentData().toString()));
|
params.setCmdName(fromqstr(actionCB->itemData(actionCB->currentIndex()).toString()));
|
||||||
params["vtype"] = qstring_to_ucs4(vtypeCB->currentData().toString());
|
params["vtype"] = qstring_to_ucs4(vtypeCB->itemData(vtypeCB->currentIndex()).toString());
|
||||||
params["lyxonly"] = from_ascii(lyxonlyXB->isChecked() ? "true" : "false");
|
params["lyxonly"] = from_ascii(lyxonlyXB->isChecked() ? "true" : "false");
|
||||||
return from_utf8(InsetCounter::params2string(params));
|
return from_utf8(InsetCounter::params2string(params));
|
||||||
}
|
}
|
||||||
@ -147,9 +147,9 @@ docstring GuiCounter::dialogToParams() const
|
|||||||
|
|
||||||
bool GuiCounter::checkWidgets(bool readonly) const
|
bool GuiCounter::checkWidgets(bool readonly) const
|
||||||
{
|
{
|
||||||
bool const cmdIsValue = actionCB->currentData().toString() == "value";
|
bool const cmdIsValue = actionCB->itemData(actionCB->currentIndex()).toString() == "value";
|
||||||
bool const cmdIsSet = actionCB->currentData().toString() == "set";
|
bool const cmdIsSet = actionCB->itemData(actionCB->currentIndex()).toString() == "set";
|
||||||
bool const cmdIsAddTo = actionCB->currentData().toString() == "addto";
|
bool const cmdIsAddTo = actionCB->itemData(actionCB->currentIndex()).toString() == "addto";
|
||||||
counterCB->setEnabled(!readonly);
|
counterCB->setEnabled(!readonly);
|
||||||
actionCB->setEnabled(!readonly);
|
actionCB->setEnabled(!readonly);
|
||||||
valueSB->setEnabled(!readonly && (cmdIsSet || cmdIsAddTo));
|
valueSB->setEnabled(!readonly && (cmdIsSet || cmdIsAddTo));
|
||||||
|
Loading…
Reference in New Issue
Block a user