File indexing completed on 2024-04-28 04:58:10

0001 #ifndef LIBKONQ_KF5COMPAT_H
0002 #define LIBKONQ_KF5COMPAT_H
0003 
0004 #include <QtGlobal>
0005 #if QT_VERSION_MAJOR < 6
0006 #include <KParts/BrowserExtension>
0007 namespace KParts {
0008   typedef BrowserExtension NavigationExtension;
0009 }
0010 #else
0011 #include <KParts/NavigationExtension>
0012 #endif
0013 
0014 #endif //LIBKONQ_KF5COMPAT_H
0015 
0016