Ejemplo n.º 1
0
void BuildSettingsDialog::saveScreen()
    {
    saveFromScreen(mLastCompName);
    OovStatus status = mComponentFile.writeFile();
    if(status.needReport())
        {
        status.report(ET_Error, "Unable to save build settings");
        }
    }
Ejemplo n.º 2
0
void BuildSettingsDialog::saveScreen()
    {
    saveFromScreen(mLastCompName);
    mComponentFile.writeFile();
    }
Ejemplo n.º 3
0
void BuildSettingsDialog::switchComponent()
    {
    saveFromScreen(mLastCompName);
    mLastCompName = mComponentTree.getSelected('/');
    loadToScreen(mLastCompName);
    }