]> git.sur5r.net Git - bacula/bacula/commitdiff
A nicer way to resize the columns and rows in joblist. Edit a few comments
authorDirk H Bartley <dbartley@schupan.com>
Tue, 24 Apr 2007 20:50:13 +0000 (20:50 +0000)
committerDirk H Bartley <dbartley@schupan.com>
Tue, 24 Apr 2007 20:50:13 +0000 (20:50 +0000)
in pages.h

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@4625 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/qt-console/joblist/joblist.cpp
bacula/src/qt-console/pages.h

index fe0b54e8c13b67cc41a4f2b16001c4de6a12ff9c..2298d0e562a034eceae487380176171330ebffaf 100644 (file)
@@ -125,9 +125,9 @@ void JobList::populateTable()
       }
    } 
    /* Resize the columns */
-   for(int cnter=0; cnter<headerlist.size(); cnter++) {
-      mp_tableWidget->resizeColumnToContents(cnter);
-   }
+   mp_tableWidget->resizeColumnsToContents();
+   mp_tableWidget->resizeRowsToContents();
+   mp_tableWidget->verticalHeader()->hide();
    if ((m_mediaName != "") && (m_resultCount == 0)){
       /* for context sensitive searches, let the user know if there were no
        * results */
index 24e7d8e50915f43bd530b5f8a467c822ee2f3499..17718f7ea1a10c688ee4b76c9823a2b008b00313 100644 (file)
  *  This class is inherited by all widget windows which are on the stack
  *  It is for the purpos of having a conistant set of functions and properties
  *  in all of the subclasses to accomplish tasks such as pulling a window out
- *  of or into the stack.  It also provides virtual functions placed called
+ *  of or into the stack.  It also provides virtual functions called
  *  from in mainwin so that subclasses can contain functions to allow them
- *  to populate thier screens at the time of first viewing, (when clicked) as
- *  opposed to  the first creation of the console connection.  After all the 
- *  console is not actually connected until after the page selector tree has been
+ *  to populate the screens at the time of first viewing, (when selected) as
+ *  opposed to  the first creation of the console connection.  The 
+ *  console is not connected until after the page selector tree has been
  *  populated.
  */