disable real time indexing setup gui if system type does not support monitor mode
This commit is contained in:
parent
d9dc7cf142
commit
a77edbd6b1
@ -938,8 +938,12 @@ void RclMain::showIndexSched(bool modal)
|
||||
connect(indexSched->cronCLB, SIGNAL(clicked()),
|
||||
this, SLOT(execCronTool()));
|
||||
if (theconfig && theconfig->isDefaultConfig()) {
|
||||
#ifdef RCL_MONITOR
|
||||
connect(indexSched->rtidxCLB, SIGNAL(clicked()),
|
||||
this, SLOT(execRTITool()));
|
||||
#else
|
||||
indexSched->rtidxCLB->setEnabled(false);
|
||||
#endif
|
||||
} else {
|
||||
indexSched->rtidxCLB->setEnabled(false);
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user