The best way if you want just to remove the "Reload" option from standart web view context menu is to use the following:

myWebView->page()->action(QWebPage::Reload)->setVisible(false);

(myWebView type is QWebView*)

If you want to hide any other standart context menu items just look at enum QWebPage::WebAction members

Hope this helps.