We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 645f9d5 commit 2f27386Copy full SHA for 2f27386
src/interface/mainwindow.cpp
@@ -48,7 +48,7 @@ MainWindow::MainWindow()
48
createActions();
49
createMenus();
50
51
- setWindowTitle("WebWhirr 0.2.0 Alpha");
+ setWindowTitle("WebWhirr 0.2.0 Beta");
52
53
}
54
@@ -140,14 +140,14 @@ void MainWindow::setTitle()
140
{
141
if (webpage->getDocumentTitle() != "")
142
143
- std::string titleString = "WebWhirr 0.2.0 Alpha -- ";
+ std::string titleString = "WebWhirr 0.2.0 Beta -- ";
144
titleString += webpage->getDocumentTitle();
145
this->setWindowTitle(QString::fromStdString(titleString));
146
147
148
else
149
150
- this->setWindowTitle("WebWhirr 0.2.0 Alpha");
+ this->setWindowTitle("WebWhirr 0.2.0 Beta");
151
152
153
0 commit comments