MCPcopy Create free account
hub / github.com/KDE/kdevelop / insideThis

Method insideThis

plugins/quickopen/quickopenplugin.cpp:954–964  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

952}
953
954bool QuickOpenLineEdit::insideThis(QObject* object)
955{
956 while (object) {
957 qCDebug(PLUGIN_QUICKOPEN) << object;
958 if (object == this || object == m_widget) {
959 return true;
960 }
961 object = object->parent();
962 }
963 return false;
964}
965
966void QuickOpenLineEdit::widgetDestroyed(QObject* obj)
967{

Callers

nothing calls this directly

Calls 1

parentMethod · 0.45

Tested by

no test coverage detected