Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix for ticket #743 (substitutions in actions weren't happening).
git-svn-id: http://svn.osgeo.org/qgis/trunk@7084 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
g_j_m committed Jul 25, 2007
1 parent 3559152 commit 34a94be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/qgsattributeaction.cpp
Expand Up @@ -59,8 +59,8 @@ void QgsAttributeAction::doAction(unsigned int index, const std::vector<std::pai
{
// The QgsRunProcess instance created by this static function
// deletes itself when no longer needed.
// we don't have to create agument list anymore as with qt3
QgsRunProcess::create(action->action(), action->capture());
QString expandedAction = expandAction(action->action(), values, defaultValueIndex);
QgsRunProcess::create(expandedAction, action->capture());
}
}

Expand Down

0 comments on commit 34a94be

Please sign in to comment.