Skip to content

Commit f71703a

Browse files
author
g_j_m
committed
Fix for ticket #743 (substitutions in actions weren't happening).
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@7084 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent ebae297 commit f71703a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/qgsattributeaction.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ void QgsAttributeAction::doAction(unsigned int index, const std::vector<std::pai
5959
{
6060
// The QgsRunProcess instance created by this static function
6161
// deletes itself when no longer needed.
62-
// we don't have to create agument list anymore as with qt3
63-
QgsRunProcess::create(action->action(), action->capture());
62+
QString expandedAction = expandAction(action->action(), values, defaultValueIndex);
63+
QgsRunProcess::create(expandedAction, action->capture());
6464
}
6565
}
6666

0 commit comments

Comments
 (0)