|
a/src/qtgui/confgui/confguiindex.cpp |
|
b/src/qtgui/confgui/confguiindex.cpp |
|
... |
|
... |
154 |
|
154 |
|
155 |
|
155 |
|
156 |
ConfIndexW::ConfIndexW(QWidget *parent, RclConfig *config)
|
156 |
ConfIndexW::ConfIndexW(QWidget *parent, RclConfig *config)
|
157 |
: QDialog(parent), m_rclconf(config)
|
157 |
: QDialog(parent), m_rclconf(config)
|
158 |
{
|
158 |
{
|
|
|
159 |
QString title("Recoll - Index Settings : ");
|
159 |
setWindowTitle(QString::fromLocal8Bit(config->getConfDir().c_str()));
|
160 |
title += QString::fromLocal8Bit(config->getConfDir().c_str());
|
|
|
161 |
setWindowTitle(title);
|
160 |
tabWidget = new QTabWidget;
|
162 |
tabWidget = new QTabWidget;
|
161 |
reloadPanels();
|
163 |
reloadPanels();
|
162 |
|
164 |
|
163 |
buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok
|
165 |
buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok
|
164 |
| QDialogButtonBox::Cancel);
|
166 |
| QDialogButtonBox::Cancel);
|