Skip to content

Commit 2f27386

Browse files
committed
Update window title to beta.
1 parent 645f9d5 commit 2f27386

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/interface/mainwindow.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ MainWindow::MainWindow()
4848
createActions();
4949
createMenus();
5050

51-
setWindowTitle("WebWhirr 0.2.0 Alpha");
51+
setWindowTitle("WebWhirr 0.2.0 Beta");
5252

5353
}
5454

@@ -140,14 +140,14 @@ void MainWindow::setTitle()
140140
{
141141
if (webpage->getDocumentTitle() != "")
142142
{
143-
std::string titleString = "WebWhirr 0.2.0 Alpha -- ";
143+
std::string titleString = "WebWhirr 0.2.0 Beta -- ";
144144
titleString += webpage->getDocumentTitle();
145145
this->setWindowTitle(QString::fromStdString(titleString));
146146
}
147147

148148
else
149149
{
150-
this->setWindowTitle("WebWhirr 0.2.0 Alpha");
150+
this->setWindowTitle("WebWhirr 0.2.0 Beta");
151151
}
152152
}
153153

0 commit comments

Comments
 (0)