summaryrefslogtreecommitdiffstats
path: root/smb4k/dialogs/smb4kbookmarkeditor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'smb4k/dialogs/smb4kbookmarkeditor.cpp')
-rw-r--r--smb4k/dialogs/smb4kbookmarkeditor.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/smb4k/dialogs/smb4kbookmarkeditor.cpp b/smb4k/dialogs/smb4kbookmarkeditor.cpp
index 5dbd660..8f5358a 100644
--- a/smb4k/dialogs/smb4kbookmarkeditor.cpp
+++ b/smb4k/dialogs/smb4kbookmarkeditor.cpp
@@ -71,9 +71,9 @@ Smb4KBookmarkEditor::Smb4KBookmarkEditor( TQWidget *parent, const char *name )
m_collection = new TDEActionCollection( this, "BookmarkEditor_ActionCollection", TDEGlobal::instance() );
- (void) new TDEAction( i18n( "&Remove" ), "remove", Key_Delete, this, TQT_SLOT( slotRemoveClicked() ), m_collection, "remove_bookmark" );
+ (void) new TDEAction( i18n( "&Remove" ), "remove", Key_Delete, this, TQ_SLOT( slotRemoveClicked() ), m_collection, "remove_bookmark" );
- (void) new TDEAction( i18n( "Remove &All" ), "edit-delete", CTRL+Key_X, this, TQT_SLOT( slotDeleteAllClicked() ), m_collection, "remove_all_bookmarks" );
+ (void) new TDEAction( i18n( "Remove &All" ), "edit-delete", CTRL+Key_X, this, TQ_SLOT( slotDeleteAllClicked() ), m_collection, "remove_all_bookmarks" );
slotLoadBookmarks();
@@ -82,20 +82,20 @@ Smb4KBookmarkEditor::Smb4KBookmarkEditor( TQWidget *parent, const char *name )
setInitialSize( configDialogSize( *(Smb4KSettings::self()->config()), "BookmarkEditor" ) );
setMinimumSize( (sizeHint().width() > 350 ? sizeHint().width() : 350), sizeHint().height() );
- connect( m_view, TQT_SIGNAL( rightButtonPressed( TQListViewItem *, const TQPoint &, int ) ),
- this, TQT_SLOT( slotRightButtonPressed( TQListViewItem *, const TQPoint &, int ) ) );
+ connect( m_view, TQ_SIGNAL( rightButtonPressed( TQListViewItem *, const TQPoint &, int ) ),
+ this, TQ_SLOT( slotRightButtonPressed( TQListViewItem *, const TQPoint &, int ) ) );
- connect( m_view, TQT_SIGNAL( itemRenamed( TQListViewItem * ) ),
- this, TQT_SLOT( slotItemRenamed( TQListViewItem * ) ) );
+ connect( m_view, TQ_SIGNAL( itemRenamed( TQListViewItem * ) ),
+ this, TQ_SLOT( slotItemRenamed( TQListViewItem * ) ) );
- connect( this, TQT_SIGNAL( okClicked() ),
- this, TQT_SLOT( slotOkClicked() ) );
+ connect( this, TQ_SIGNAL( okClicked() ),
+ this, TQ_SLOT( slotOkClicked() ) );
- connect( this, TQT_SIGNAL( cancelClicked() ),
- this, TQT_SLOT( slotCancelClicked() ) );
+ connect( this, TQ_SIGNAL( cancelClicked() ),
+ this, TQ_SLOT( slotCancelClicked() ) );
- connect( Smb4KCore::bookmarkHandler(), TQT_SIGNAL( bookmarksUpdated() ),
- this, TQT_SLOT( slotLoadBookmarks() ) );
+ connect( Smb4KCore::bookmarkHandler(), TQ_SIGNAL( bookmarksUpdated() ),
+ this, TQ_SLOT( slotLoadBookmarks() ) );
}
@@ -113,7 +113,7 @@ Smb4KBookmarkEditor::~Smb4KBookmarkEditor()
/////////////////////////////////////////////////////////////////////////////
-// TQT_SLOT IMPLEMENTATIONS
+// SLOT IMPLEMENTATIONS
/////////////////////////////////////////////////////////////////////////////
void Smb4KBookmarkEditor::slotRightButtonPressed( TQListViewItem *item, const TQPoint &pos, int )