Insertion point fix for Declaration from Definition quickfix

Reviewed-by: Erik Verbruggen
This commit is contained in:
Lasse Holmstedt
2010-07-30 17:41:46 +02:00
parent ec15a55118
commit 912487d3eb

View File

@@ -214,11 +214,11 @@ protected:
break;
case T_PROTECTED:
newXsSpec = isSlot ? InsertionPointLocator::PublicSlot : InsertionPointLocator::Protected;
newXsSpec = isSlot ? InsertionPointLocator::ProtectedSlot : InsertionPointLocator::Protected;
break;
case T_PRIVATE:
newXsSpec = isSlot ? InsertionPointLocator::PublicSlot : InsertionPointLocator::Private;
newXsSpec = isSlot ? InsertionPointLocator::PrivateSlot: InsertionPointLocator::Private;
break;
case T_Q_SIGNALS: