|
a/src/qtgui/confgui/confguiindex.cpp |
|
b/src/qtgui/confgui/confguiindex.cpp |
|
... |
|
... |
174 |
|
174 |
|
175 |
ConfLink lnk3(new ConfLinkRclRep(config, "webcachemaxmbs"));
|
175 |
ConfLink lnk3(new ConfLinkRclRep(config, "webcachemaxmbs"));
|
176 |
ConfParamIntW *cp3 =
|
176 |
ConfParamIntW *cp3 =
|
177 |
new ConfParamIntW(gb1, lnk3, tr("Max. size for the web cache (MB)"),
|
177 |
new ConfParamIntW(gb1, lnk3, tr("Max. size for the web cache (MB)"),
|
178 |
tr("Entries will be recycled once the size is reached"),
|
178 |
tr("Entries will be recycled once the size is reached"),
|
179 |
-1, 1000);
|
179 |
-1, 1000);
|
180 |
cp3->setEnabled(cp1->m_cb->isOn());
|
180 |
cp3->setEnabled(cp1->m_cb->isOn());
|
181 |
connect(cp1->m_cb, SIGNAL(toggled(bool)), cp3, SLOT(setEnabled(bool)));
|
181 |
connect(cp1->m_cb, SIGNAL(toggled(bool)), cp3, SLOT(setEnabled(bool)));
|
182 |
|
182 |
|
183 |
vboxLayout->addWidget(gb1);
|
183 |
vboxLayout->addWidget(gb1);
|
184 |
|
184 |
|