]> git.sur5r.net Git - bacula/bacula/commitdiff
Get the title to make more sense when window is undocked.
authorDirk H Bartley <dbartley@schupan.com>
Thu, 13 Mar 2008 23:22:56 +0000 (23:22 +0000)
committerDirk H Bartley <dbartley@schupan.com>
Thu, 13 Mar 2008 23:22:56 +0000 (23:22 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@6609 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/qt-console/status/clientstat.cpp
bacula/src/qt-console/status/storstat.cpp

index 91e4bd04057dabfc3bfb1a538e877a3df22a1606..b4fe0579bf09d40f96775dc7724d82f2302d6b60 100644 (file)
@@ -43,7 +43,7 @@ ClientStat::ClientStat(QString &client, QTreeWidgetItem *parentTreeWidgetItem)
 {
    m_client = client;
    setupUi(this);
-   m_name = tr("Client Status");
+   m_name = tr("Client Status") + " " + m_client;
    m_closeable = true;
    pgInitialize(parentTreeWidgetItem);
    QTreeWidgetItem* thisitem = mainWin->getFromHash(this);
index c5720982186fa96044512206f7eddc02b925cdd4..4a51064ff71c64c12bce242ead18701cf8f80fa6 100644 (file)
@@ -57,7 +57,7 @@ StorStat::StorStat(QString &storage, QTreeWidgetItem *parentTreeWidgetItem)
 {
    m_storage = storage;
    setupUi(this);
-   m_name = tr("Storage Status");
+   m_name = tr("Storage Status") + " " + m_storage;
    m_closeable = true;
    pgInitialize(parentTreeWidgetItem);
    QTreeWidgetItem* thisitem = mainWin->getFromHash(this);