diff options
author | Kevin Smith <git@kismith.co.uk> | 2010-04-04 11:55:11 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2010-04-04 11:55:11 (GMT) |
commit | f1675c651a08c294447389176262ab890cc6e7b5 (patch) | |
tree | 5371b7db58ac31b22b747822b224db3565442084 /Swift/Controllers/UIEvents | |
parent | 03a5a0a4a6c7504acead164dc8334c36da86a888 (diff) | |
download | swift-f1675c651a08c294447389176262ab890cc6e7b5.zip swift-f1675c651a08c294447389176262ab890cc6e7b5.tar.bz2 |
Add 'remove' context menu item for rosters (not implemented).
Diffstat (limited to 'Swift/Controllers/UIEvents')
-rw-r--r-- | Swift/Controllers/UIEvents/RemoveItemRosterAction.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Swift/Controllers/UIEvents/RemoveItemRosterAction.h b/Swift/Controllers/UIEvents/RemoveItemRosterAction.h new file mode 100644 index 0000000..6741bc6 --- /dev/null +++ b/Swift/Controllers/UIEvents/RemoveItemRosterAction.h @@ -0,0 +1,15 @@ +#pragma once + +#include "Swiften/Roster/UserRosterAction.h" + +namespace Swift { +class RosterItem; +class TreeWidgetItem; + +class RemoveItemRosterAction : public UserRosterAction { + public: + virtual ~RemoveItemRosterAction() {}; + +}; + +} |