#2162 Context menu: Use Qt typedef ulonglong, not size_t

This commit is contained in:
Rebecca Cox
2017-11-29 15:26:01 +01:00
parent 66082e2160
commit aa318a5aaf
2 changed files with 3 additions and 2 deletions

View File

@@ -263,7 +263,8 @@ void RiuViewerCommands::displayContextMenu(QMouseEvent* event)
QString faultName = fault->name();
QVariantList hideFaultList;
hideFaultList.push_back(m_currentCellIndex);
qulonglong currentCellIndex = m_currentCellIndex;
hideFaultList.push_back(currentCellIndex);
hideFaultList.push_back(m_currentFaceIndex);
menuBuilder.addCmdFeatureWithUserData("RicEclipseHideFaultFeature", QString("Hide ") + faultName, hideFaultList);