From 6dd3d36c4552565756dcedab2ddd44e90a553252 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Thu, 19 Jun 2008 02:06:10 +0000 Subject: [FIX] Validation works in Pokémodr [FIX] Macros moved to their own file [FIX] Macros for subclasses added [FIX] Key shortcuts added to context menu items [FIX] Rules had a redundant field MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@212 6ecfd1a5-f3ed-3746-8530-beee90d26b22 --- pokemodr/models/MapWildListModel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pokemodr/models/MapWildListModel.cpp') diff --git a/pokemodr/models/MapWildListModel.cpp b/pokemodr/models/MapWildListModel.cpp index c3dc26eb..30fcf6b3 100644 --- a/pokemodr/models/MapWildListModel.cpp +++ b/pokemodr/models/MapWildListModel.cpp @@ -66,9 +66,9 @@ QVariant Pokemodr::MapWildListModel::data(int role) const else if (role == Pokemodr::BaseModel::ContextMenuRole) { KMenu* menu = new KMenu; - menu->addAction("Add Encounter", this, SLOT(addObject())); + menu->addAction("&Add Encounter", this, SLOT(addObject())); menu->addSeparator(); - menu->addAction("Delete Wild List", this, SLOT(deleteSelf())); + menu->addAction("&Delete Wild List", this, SLOT(deleteSelf())); return QVariant::fromValue(static_cast(menu)); } return Pokemodr::GroupObjectModel::data(role); -- cgit