Unfortunately, catalog is not ported to qt5, only smarthouse and patientcare are.
when I change the headers of catalog I get the following error:


Qt Code:
  1. error: invalid use of incomplete type 'struct QWindowsStyle'
  2. error: forward declaration of 'struct QWindowsStyle'
To copy to clipboard, switch view to plain text mode 

clicking error brings me here:
Qt Code:
  1. #ifndef QMENUBAR_H
  2. #define QMENUBAR_H
  3.  
  4. #include <QtWidgets/qmenu.h>
  5.  
  6. QT_BEGIN_HEADER
  7.  
  8. QT_BEGIN_NAMESPACE
  9.  
  10. #ifndef QT_NO_MENUBAR
  11.  
  12. class QMenuBarPrivate;
  13. class QPlatformMenuBar;
To copy to clipboard, switch view to plain text mode 

I searched for the headers as well, but couldn't find it in QtWidgets/...

anyone faced this before?