コード例 #1
0
void BuildSettingsDialog::saveScreen()
    {
    saveFromScreen(mLastCompName);
    OovStatus status = mComponentFile.writeFile();
    if(status.needReport())
        {
        status.report(ET_Error, "Unable to save build settings");
        }
    }
コード例 #2
0
ファイル: BuildSettingsDialog.cpp プロジェクト: 8l/oovcde
void BuildSettingsDialog::saveScreen()
    {
    saveFromScreen(mLastCompName);
    mComponentFile.writeFile();
    }
コード例 #3
0
ファイル: BuildSettingsDialog.cpp プロジェクト: 8l/oovcde
void BuildSettingsDialog::switchComponent()
    {
    saveFromScreen(mLastCompName);
    mLastCompName = mComponentTree.getSelected('/');
    loadToScreen(mLastCompName);
    }