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

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

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

revision 2841 by persson, Sun Aug 30 10:00:49 2015 UTC revision 3225 by schoenebeck, Fri May 26 22:10:16 2017 UTC
# Line 1  Line 1 
1  /*                                                         -*- c++ -*-  /*
2   * Copyright (C) 2013-2015 Andreas Persson   * Copyright (C) 2013-2017 Andreas Persson
3   *   *
4   * This program is free software; you can redistribute it and/or   * This program is free software; you can redistribute it and/or
5   * modify it under the terms of the GNU General Public License as   * modify it under the terms of the GNU General Public License as
# Line 17  Line 17 
17   * 02110-1301, USA.   * 02110-1301, USA.
18   */   */
19    
20    #include "global.h"
21  #include "midirules.h"  #include "midirules.h"
22    
23  #include <gtkmm/stock.h>  #include <gtkmm/stock.h>
24    
 #include "global.h"  
25    
26  MidiRules::MidiRules() :  MidiRules::MidiRules() :
27      label(_("Midi rule:")),      label(_("Midi rule:")),
28      quit_button(Gtk::Stock::CLOSE),      quit_button(Gtk::Stock::CLOSE),
29      unknown(_("unknown"))      unknown(_("unknown"))
30  {  {
31        if (!Settings::singleton()->autoRestoreWindowDimension) {
32            //set_default_size(470, 390);
33            set_position(Gtk::WIN_POS_MOUSE);
34        }
35    
36      set_title(_("Midi Rules"));      set_title(_("Midi Rules"));
37      set_border_width(6);      set_border_width(6);
38    

Legend:
Removed from v.2841  
changed lines
  Added in v.3225

  ViewVC Help
Powered by ViewVC