diff options
Diffstat (limited to 'qtinterface/tqpopupmenu.cpp')
-rw-r--r-- | qtinterface/tqpopupmenu.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/qtinterface/tqpopupmenu.cpp b/qtinterface/tqpopupmenu.cpp index 3d370f8..6ee632c 100644 --- a/qtinterface/tqpopupmenu.cpp +++ b/qtinterface/tqpopupmenu.cpp @@ -21,3 +21,23 @@ Boston, MA 02110-1301, USA. #include <tqt.h> #include <tqpopupmenu.h> + +#ifdef USE_QT4 + +void Q3PopupMenu::changeItem( int id, const QString &text ) { + changeItem( text, id ); +} + +void Q3PopupMenu::changeItem( const QString &text, int id ) { + changeItem( text, id ); +} + +void Q3PopupMenu::changeItem( const QPixmap &pixmap, int id ) { + changeItem( pixmap, id ); +} + +void Q3PopupMenu::changeItem( const QIconSet &icon, const QString &text, int id ) { + changeItem( icon, text, id ); +} + +#endif
\ No newline at end of file |