]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/qt-console/fileset/fileset.cpp
kes Reduce bconsole help to fit in 80 columns
[bacula/bacula] / bacula / src / qt-console / fileset / fileset.cpp
index 108eae991cdd6b0a83be80cf945fb7ad19bc0f0d..6a8d71609c38b762e0a98a4dc8dee633569d3286 100644 (file)
@@ -218,7 +218,7 @@ void FileSet::createContextMenu()
    connect(actionRefreshFileSet, SIGNAL(triggered()), this,
                 SLOT(populateTable()));
    connect(actionStatusFileSetInConsole, SIGNAL(triggered()), this,
-                SLOT(consoleStatusFileSet()));
+                SLOT(consoleShowFileSet()));
    connect(actionShowJobs, SIGNAL(triggered()), this,
                 SLOT(showJobs()));
 }
@@ -227,10 +227,10 @@ void FileSet::createContextMenu()
  * Function responding to actionListJobsofFileSet which calls mainwin function
  * to create a window of a list of jobs of this fileset.
  */
-void FileSet::consoleStatusFileSet()
+void FileSet::consoleShowFileSet()
 {
-   QString cmd("status fileset=");
-   cmd += m_currentlyselected;
+   QString cmd("show fileset=\"");
+   cmd += m_currentlyselected + "\"";
    consoleCommand(cmd);
 }