/[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 3157 by persson, Sun Sep 20 10:18:22 2015 UTC revision 3158 by schoenebeck, Mon May 8 18:05:35 2017 UTC
# Line 9  Line 9 
9  #include "global.h"  #include "global.h"
10    
11  ScriptSlots::ScriptSlots() :  ScriptSlots::ScriptSlots() :
12      m_closeButton(_("_Close"), true)      m_closeButton(Gtk::Stock::CLOSE)
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(_("_Down"), true);      row.downButton = new Gtk::Button(Gtk::Stock::GO_DOWN);
128      row.upButton = new Gtk::Button(_("_Up"), true);      row.upButton = new Gtk::Button(Gtk::Stock::GO_UP);
129      row.deleteButton = new Gtk::Button(_("_Delete"), true);      row.deleteButton = new Gtk::Button(Gtk::Stock::DELETE);
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.3157  
changed lines
  Added in v.3158

  ViewVC Help
Powered by ViewVC