and the long list preferences to be used in jobs.cpp.
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@5296
91ce42f0-d328-0410-95d8-
f526ca767f89
JobPlot::JobPlot(QTreeWidgetItem *parentTreeWidgetItem, JobPlotPass &passVals)
{
setupUserInterface();
- m_name = "Job Plot";
+ m_name = "JobPlot";
pgInitialize(parentTreeWidgetItem);
readSplitterSettings();
QTreeWidgetItem* thisitem = mainWin->getFromHash(this);
void Jobs::consoleListFiles()
{
QString cmd = "list files job=\"" + m_currentlyselected + "\"";
+ if (mainWin->m_longList) { cmd.prepend("l"); }
consoleCommand(cmd);
}
void Jobs::consoleListVolume()
{
QString cmd = "list volumes job=\"" + m_currentlyselected + "\"";
+ if (mainWin->m_longList) { cmd.prepend("l"); }
consoleCommand(cmd);
}
void Jobs::consoleListNextVolume()
{
QString cmd = "list nextvolume job=\"" + m_currentlyselected + "\"";
+ if (mainWin->m_longList) { cmd.prepend("l"); }
consoleCommand(cmd);
}