diff options
Diffstat (limited to 'kate/openheader/plugin_kateopenheader.cpp')
-rw-r--r-- | kate/openheader/plugin_kateopenheader.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kate/openheader/plugin_kateopenheader.cpp b/kate/openheader/plugin_kateopenheader.cpp index 61cd592..15dbb77 100644 --- a/kate/openheader/plugin_kateopenheader.cpp +++ b/kate/openheader/plugin_kateopenheader.cpp @@ -36,8 +36,8 @@ class PluginView : public KXMLGUIClient K_EXPORT_COMPONENT_FACTORY( kateopenheaderplugin, KGenericFactory<PluginKateOpenHeader>( "kateopenheader" ) ) -PluginKateOpenHeader::PluginKateOpenHeader( TQObject* parent, const char* name, const TQStringList& ) - : Kate::Plugin ( (Kate::Application *)parent, name ) +PluginKateOpenHeader::PluginKateOpenHeader( TQObject* tqparent, const char* name, const TQStringList& ) + : Kate::Plugin ( (Kate::Application *)tqparent, name ) { } @@ -91,9 +91,9 @@ void PluginKateOpenHeader::slotOpenHeader () TQStringList headers( TQStringList() << "h" << "H" << "hh" << "hpp" ); TQStringList sources( TQStringList() << "c" << "cpp" << "cc" << "cp" << "cxx" ); - if( sources.find( extension ) != sources.end() ) { + if( sources.tqfind( extension ) != sources.end() ) { tryOpen( url, headers ); - } else if ( headers.find( extension ) != headers.end() ) { + } else if ( headers.tqfind( extension ) != headers.end() ) { tryOpen( url, sources ); } } |