| 141 | } |
| 142 | |
| 143 | void BisectWindow::handleSaveButton() |
| 144 | { |
| 145 | QMessageBox msg; |
| 146 | QString filename; |
| 147 | if (FrameFileIO::saveFrameFile(filename, &splitFrames)) |
| 148 | { |
| 149 | msg.setText(tr("Successfully saved file")); |
| 150 | } |
| 151 | else |
| 152 | { |
| 153 | msg.setText(tr("Error while attempting to save.")); |
| 154 | } |
| 155 | msg.exec(); |
| 156 | } |
| 157 | |
| 158 | void BisectWindow::updateFrameNumSlider() |
| 159 | { |