aboutsummaryrefslogtreecommitdiffstats
path: root/libs/svgviewer/mainwindow.cpp
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2013-11-27 20:43:42 +0100
committerClifford Wolf <clifford@clifford.at>2013-11-27 20:43:42 +0100
commit9826f6ae029c67c01d6984970af0af9918080257 (patch)
tree164ee93ece9afcb7d16419edbb3bf81e13b47d09 /libs/svgviewer/mainwindow.cpp
parent18e52d81bf0587f7767b3b558cbb4192d52e9d67 (diff)
downloadyosys-9826f6ae029c67c01d6984970af0af9918080257.tar.gz
yosys-9826f6ae029c67c01d6984970af0af9918080257.tar.bz2
yosys-9826f6ae029c67c01d6984970af0af9918080257.zip
Added some svgviewer code for possible future switch to QGraphicsWebView
Diffstat (limited to 'libs/svgviewer/mainwindow.cpp')
-rw-r--r--libs/svgviewer/mainwindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/svgviewer/mainwindow.cpp b/libs/svgviewer/mainwindow.cpp
index b352ff9f7..f8f72e5c4 100644
--- a/libs/svgviewer/mainwindow.cpp
+++ b/libs/svgviewer/mainwindow.cpp
@@ -109,7 +109,7 @@ MainWindow::MainWindow()
this, SLOT(setRenderer(QAction*)));
setCentralWidget(m_view);
- setWindowTitle(tr("SVG Viewer"));
+ setWindowTitle(tr("Yosys SVG Viewer"));
}
void MainWindow::openFile(const QString &path, bool reload)
@@ -147,7 +147,7 @@ void MainWindow::openFile(const QString &path, bool reload)
if (!fileName.startsWith(":/"))
{
m_currentPath = fileName;
- setWindowTitle(tr("%1 - SVGViewer").arg(m_currentPath));
+ setWindowTitle(tr("%1 - Yosys SVG Viewer").arg(m_currentPath));
// just keep the file open so this process is found using 'fuser'
m_filehandle = fopen(fileName.toAscii(), "r");