+ fix minor issue with url redirection
+ remove const reference
This commit is contained in:
@@ -685,7 +685,7 @@ void CallTipsList::callTipItemActivated(QListWidgetItem *item)
|
||||
cursor.insertText( text );
|
||||
|
||||
// get CallTip from item's UserRole-data
|
||||
const CallTip &callTip = item->data(Qt::UserRole).value<CallTip>();
|
||||
CallTip callTip = item->data(Qt::UserRole).value<CallTip>();
|
||||
|
||||
// if call completion enabled and we've something callable (method or class constructor) ...
|
||||
if (this->doCallCompletion
|
||||
|
||||
Reference in New Issue
Block a user