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

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

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

revision 2994 by schoenebeck, Sat Sep 24 23:34:37 2016 UTC revision 3089 by schoenebeck, Sun Jan 15 19:18:39 2017 UTC
# Line 1  Line 1 
1  /*  /*
2   * Copyright (C) 2006-2016 Andreas Persson   * Copyright (C) 2006-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 776  void MainWindow::update_dimregs() Line 776  void MainWindow::update_dimregs()
776              add_region_to_dimregs(region, stereo, all_dimregs);              add_region_to_dimregs(region, stereo, all_dimregs);
777          }          }
778      }      }
779    
780        m_DimRegionChooser.setModifyAllRegions(all_regions);
781        m_DimRegionChooser.setModifyAllDimensionRegions(all_dimregs);
782        m_DimRegionChooser.setModifyBothChannels(stereo);
783  }  }
784    
785  void MainWindow::dimreg_all_dimregs_toggled()  void MainWindow::dimreg_all_dimregs_toggled()
# Line 827  void Loader::progress_callback(float fra Line 831  void Loader::progress_callback(float fra
831      progress_dispatcher();      progress_dispatcher();
832  }  }
833    
834    #if defined(WIN32) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 2))
835    // make sure stack is 16-byte aligned for SSE instructions
836    __attribute__((force_align_arg_pointer))
837    #endif
838  void Loader::thread_function()  void Loader::thread_function()
839  {  {
840      printf("thread_function self=%p\n",      printf("thread_function self=%p\n",
# Line 906  void Saver::progress_callback(float frac Line 914  void Saver::progress_callback(float frac
914      progress_dispatcher.emit();      progress_dispatcher.emit();
915  }  }
916    
917    #if defined(WIN32) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 2))
918    // make sure stack is 16-byte aligned for SSE instructions
919    __attribute__((force_align_arg_pointer))
920    #endif
921  void Saver::thread_function()  void Saver::thread_function()
922  {  {
923      printf("thread_function self=%p\n",      printf("thread_function self=%p\n",
# Line 1519  void MainWindow::on_action_help_about() Line 1531  void MainWindow::on_action_help_about()
1531      dialog.set_name("Gigedit");      dialog.set_name("Gigedit");
1532  #endif  #endif
1533      dialog.set_version(VERSION);      dialog.set_version(VERSION);
1534      dialog.set_copyright("Copyright (C) 2006-2016 Andreas Persson");      dialog.set_copyright("Copyright (C) 2006-2017 Andreas Persson");
1535      const std::string sComment =      const std::string sComment =
1536          _("Built " __DATE__ "\nUsing ") +          _("Built " __DATE__ "\nUsing ") +
1537          ::gig::libraryName() + " " + ::gig::libraryVersion() + "\n\n" +          ::gig::libraryName() + " " + ::gig::libraryVersion() + "\n\n" +

Legend:
Removed from v.2994  
changed lines
  Added in v.3089

  ViewVC Help
Powered by ViewVC