/[svn]/gigedit/trunk/src/gigedit/scriptslots.cpp
ViewVC logotype

Diff of /gigedit/trunk/src/gigedit/scriptslots.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2844 by schoenebeck, Sun Jun 8 19:09:26 2014 UTC revision 2845 by persson, Sun Sep 20 10:18:22 2015 UTC
# Line 9  Line 9 
9  #include "global.h"  #include "global.h"
10    
11  ScriptSlots::ScriptSlots() :  ScriptSlots::ScriptSlots() :
12      m_closeButton(Gtk::Stock::CLOSE)      m_closeButton(_("_Close"), true)
13  {  {
14      m_instrument = NULL;      m_instrument = NULL;
15    
# Line 124  void ScriptSlots::appendNewSlot(gig::Scr Line 124  void ScriptSlots::appendNewSlot(gig::Scr
124      row.id = slotID++;      row.id = slotID++;
125      row.hbox = new Gtk::HBox;      row.hbox = new Gtk::HBox;
126      row.label = new Gtk::Label;      row.label = new Gtk::Label;
127      row.downButton = new Gtk::Button(Gtk::Stock::GO_DOWN);      row.downButton = new Gtk::Button(_("_Down"), true);
128      row.upButton = new Gtk::Button(Gtk::Stock::GO_UP);      row.upButton = new Gtk::Button(_("_Up"), true);
129      row.deleteButton = new Gtk::Button(Gtk::Stock::DELETE);      row.deleteButton = new Gtk::Button(_("_Delete"), true);
130      row.script = script;      row.script = script;
131    
132      row.hbox->pack_start(*row.label);      row.hbox->pack_start(*row.label);

Legend:
Removed from v.2844  
changed lines
  Added in v.2845

  ViewVC Help
Powered by ViewVC