diff options
Diffstat (limited to 'src/kchmbookmarkwindow.cpp')
-rw-r--r-- | src/kchmbookmarkwindow.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/kchmbookmarkwindow.cpp b/src/kchmbookmarkwindow.cpp index a95953c..dc1b3e4 100644 --- a/src/kchmbookmarkwindow.cpp +++ b/src/kchmbookmarkwindow.cpp @@ -50,29 +50,29 @@ KCHMBookmarkWindow::KCHMBookmarkWindow(TQWidget *parent, const char *name) hlayout->addWidget (del); connect( m_bookmarkList, - TQT_SIGNAL( doubleClicked ( TQListViewItem *, const TQPoint &, int) ), + TQ_SIGNAL( doubleClicked ( TQListViewItem *, const TQPoint &, int) ), this, - TQT_SLOT( onDoubleClicked ( TQListViewItem *, const TQPoint &, int) ) ); + TQ_SLOT( onDoubleClicked ( TQListViewItem *, const TQPoint &, int) ) ); connect( add, - TQT_SIGNAL( clicked () ), + TQ_SIGNAL( clicked () ), this, - TQT_SLOT( onAddBookmarkPressed( ) ) ); + TQ_SLOT( onAddBookmarkPressed( ) ) ); connect( del, - TQT_SIGNAL( clicked () ), + TQ_SIGNAL( clicked () ), this, - TQT_SLOT( onDelBookmarkPressed( ) ) ); + TQ_SLOT( onDelBookmarkPressed( ) ) ); connect( edit, - TQT_SIGNAL( clicked () ), + TQ_SIGNAL( clicked () ), this, - TQT_SLOT( onEditBookmarkPressed( ) ) ); + TQ_SLOT( onEditBookmarkPressed( ) ) ); connect( m_bookmarkList, - TQT_SIGNAL( contextMenuRequested( TQListViewItem *, const TQPoint& , int ) ), + TQ_SIGNAL( contextMenuRequested( TQListViewItem *, const TQPoint& , int ) ), this, - TQT_SLOT( slotContextMenuRequested ( TQListViewItem *, const TQPoint &, int ) ) ); + TQ_SLOT( slotContextMenuRequested ( TQListViewItem *, const TQPoint &, int ) ) ); m_menuBookmarks = 0; m_contextMenu = 0; @@ -198,10 +198,10 @@ void KCHMBookmarkWindow::createMenu( KCHMMainWindow * parent ) m_menuBookmarks = new KTQPopupMenu( parent ); parent->menuBar()->insertItem( i18n( "&Bookmarks"), m_menuBookmarks ); - m_menuBookmarks->insertItem( i18n( "&Add bookmark"), this, TQT_SLOT(onAddBookmarkPressed()), CTRL+Key_B ); + m_menuBookmarks->insertItem( i18n( "&Add bookmark"), this, TQ_SLOT(onAddBookmarkPressed()), CTRL+Key_B ); m_menuBookmarks->insertSeparator(); - connect( m_menuBookmarks, TQT_SIGNAL( activated(int) ), this, TQT_SLOT ( onBookmarkSelected(int) )); + connect( m_menuBookmarks, TQ_SIGNAL( activated(int) ), this, TQ_SLOT ( onBookmarkSelected(int) )); } void KCHMBookmarkWindow::onBookmarkSelected( int bookmark ) |