diff options
Diffstat (limited to 'src/gui/models/touchactionmodel.cpp')
-rw-r--r-- | src/gui/models/touchactionmodel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/models/touchactionmodel.cpp b/src/gui/models/touchactionmodel.cpp index 7f6b68ef7..1998d2752 100644 --- a/src/gui/models/touchactionmodel.cpp +++ b/src/gui/models/touchactionmodel.cpp @@ -50,7 +50,7 @@ TouchActionsModel::TouchActionsModel() : mActionId(), mActionToSelection() { - std::vector<SetupActionData*> data; + STD_VECTOR<SetupActionData*> data; for (int f = 0, fsz = touchActionDataSize; f < fsz; f ++) { @@ -64,7 +64,7 @@ TouchActionsModel::TouchActionsModel() : std::sort(data.begin(), data.end(), touchActionSorter); int cnt = 0; - FOR_EACH (std::vector<SetupActionData*>::iterator, it, data) + FOR_EACH (STD_VECTOR<SetupActionData*>::iterator, it, data) { const SetupActionData *const data1 = *it; mNames.push_back(data1->name); |