Skip to content

Commit

Permalink
Added back in column labels that got lost in the move from QTable (Qt…
Browse files Browse the repository at this point in the history
…3) to Q3Table

git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@4678 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
g_j_m committed Jan 13, 2006
1 parent 7dd1453 commit a8e5f46
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/gui/qgsattributeactiondialog.cpp
Expand Up @@ -53,7 +53,11 @@ QgsAttributeActionDialog::QgsAttributeActionDialog(QgsAttributeAction* actions,

void QgsAttributeActionDialog::init()
{
// Can these be moved to the .ui file?
Q3Header* header = attributeActionTable->horizontalHeader();
header->setLabel(0, "Name");
header->setLabel(1, "Action");
header->setLabel(2, "Capture");

attributeActionTable->setColumnStretchable(0, true);
attributeActionTable->setColumnStretchable(1, true);
attributeActionTable->setColumnStretchable(2, true);
Expand Down

0 comments on commit a8e5f46

Please sign in to comment.