mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#2162 Context menu: Use Qt typedef ulonglong, not size_t
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user