From 65d6a8367215779b27867bf97c4da4b4471b36e1 Mon Sep 17 00:00:00 2001 From: Henrik Brix Andersen Date: Tue, 12 Jun 2012 23:47:59 +0200 Subject: [PATCH] wxID_EXIT is already imported, no need to specify package name --- lib/Slic3r/GUI.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Slic3r/GUI.pm b/lib/Slic3r/GUI.pm index 4e511017a..c8796f979 100644 --- a/lib/Slic3r/GUI.pm +++ b/lib/Slic3r/GUI.pm @@ -44,7 +44,7 @@ sub OnInit { $fileMenu->Append(5, "Slice and Save As…"); $fileMenu->Append(6, "Export SVG…"); $fileMenu->AppendSeparator(); - $fileMenu->Append(&Wx::wxID_EXIT, "&Quit"); + $fileMenu->Append(wxID_EXIT, "&Quit"); $menubar->Append($fileMenu, "&File"); EVT_MENU($frame, 1, sub { $panel->save_config }); EVT_MENU($frame, 2, sub { $panel->load_config });