11 lines
271 B
C
11 lines
271 B
C
|
|
#ifndef COMMONFUNCTION_H
|
|||
|
|
#define COMMONFUNCTION_H
|
|||
|
|
|
|||
|
|
#include <QTableView>
|
|||
|
|
#include <QMessageBox>
|
|||
|
|
|
|||
|
|
void resizeColumnsToContents( QTableView* pView, int scaleColumn = 3 );
|
|||
|
|
void showMsg( QMessageBox::Icon icon, QString sTitle, QString sText );
|
|||
|
|
|
|||
|
|
#endif // COMMONFUNCTION_H
|