Skip to content

Commit

Permalink
GUI - s/workspace/buffer/
Browse files Browse the repository at this point in the history
  • Loading branch information
samaaron committed Jul 29, 2015
1 parent e61957f commit 5d47dbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/gui/qt/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1056,7 +1056,7 @@ QString MainWindow::currentTabLabel()

bool MainWindow::saveAs()
{
QString fileName = QFileDialog::getSaveFileName(this, tr("Save Current Workspace"), QDir::homePath() + "/Desktop");
QString fileName = QFileDialog::getSaveFileName(this, tr("Save Current Buffer"), QDir::homePath() + "/Desktop");
if(!fileName.isEmpty()){
return saveFile(fileName, (SonicPiScintilla*)tabs->currentWidget());
} else {
Expand Down Expand Up @@ -1789,7 +1789,7 @@ void MainWindow::createToolBar()

// Save
QAction *saveAsAct = new QAction(QIcon(":/images/save.png"), tr("Save As..."), this);
setupAction(saveAsAct, 0, tr("Save current workspace as an external file"), SLOT(saveAs()));
setupAction(saveAsAct, 0, tr("Save current buffer as an external file"), SLOT(saveAs()));

// Info
QAction *infoAct = new QAction(QIcon(":/images/info.png"), tr("Info"), this);
Expand Down

0 comments on commit 5d47dbd

Please sign in to comment.