/[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 2331 by persson, Sun Mar 4 09:01:40 2012 UTC revision 2332 by persson, Wed Mar 14 05:22:26 2012 UTC
# Line 1  Line 1 
1  /*  /*
2   * Copyright (C) 2006-2011 Andreas Persson   * Copyright (C) 2006-2012 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 493  Loader::Loader(const char* filename) Line 493  Loader::Loader(const char* filename)
493    
494  void Loader::launch()  void Loader::launch()
495  {  {
496      thread = Glib::Threads::Thread::create(sigc::mem_fun(*this, &Loader::thread_function), true);  #ifdef OLD_THREADS
497        thread = Glib::Thread::create(sigc::mem_fun(*this, &Loader::thread_function), true);
498    #else
499        thread = Glib::Threads::Thread::create(sigc::mem_fun(*this, &Loader::thread_function));
500    #endif
501      printf("launch thread=%x\n", thread);      printf("launch thread=%x\n", thread);
502  }  }
503    
# Line 915  void MainWindow::on_action_help_about() Line 919  void MainWindow::on_action_help_about()
919      dialog.set_name("Gigedit");      dialog.set_name("Gigedit");
920  #endif  #endif
921      dialog.set_version(VERSION);      dialog.set_version(VERSION);
922      dialog.set_copyright("Copyright (C) 2006-2011 Andreas Persson");      dialog.set_copyright("Copyright (C) 2006-2012 Andreas Persson");
923      dialog.set_comments(_(      dialog.set_comments(_(
924          "Released under the GNU General Public License.\n"          "Released under the GNU General Public License.\n"
925          "\n"          "\n"

Legend:
Removed from v.2331  
changed lines
  Added in v.2332

  ViewVC Help
Powered by ViewVC