}
}
/* 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 */
* 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.
*/