google-code-export / photivo

Automatically exported from code.google.com/p/photivo
GNU General Public License v3.0
3 stars 0 forks source link

crash with -j option on linux #70

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?

starting photivo -j file.ptj crashes early

What is the expected output? What do you see instead?

What version of the product are you using? On what operating system?

fresh mercurial, ubuntu 11.10

Please provide any additional information below.

bug is there:
Sources/ptMainWindow.cpp
// Display strings from settings
void ptMainWindow::Settings_2_Form() {
    return;   // <<<<<<<<<<<<<<<<<<< needed to avoid crash
  // Metadata
  edtImageTitle->setText(Settings->GetString("ImageTitle"));
  edtCopyright->setText( Settings->GetString("Copyright"));
}

Original issue reported on code.google.com by pierre.h...@gmail.com on 28 Mar 2012 at 11:49

GoogleCodeExporter commented 9 years ago
Thanks foryour report. I changed it, can you please test and report back?

greets mike

Original comment by m...@mm-log.com on 29 Mar 2012 at 5:57

GoogleCodeExporter commented 9 years ago
hello

i tried to upgrade and recompile but the problem was still here.
may be i'm not accustomed to hg source control

i have an other path proposal which does not delete the functionnality

// Display strings from settings
void ptMainWindow::Settings_2_Form() {

    if (Settings->GetInt("JobMode")) return;

  // Metadata
  edtImageTitle->setText(Settings->GetString("ImageTitle"));
  edtCopyright->setText( Settings->GetString("Copyright"));
}

Original comment by pierre.h...@gmail.com on 1 Apr 2012 at 10:28

GoogleCodeExporter commented 9 years ago
Hi, 

I actuallay changed it like that, see rev. 406a9cd42630.
Could you start from a fresh folder with a new checkout?

greets mike

Original comment by m...@mm-log.com on 1 Apr 2012 at 8:45

GoogleCodeExporter commented 9 years ago
hello

i tried a fresh checkout with

hg clone https://code.google.com/p/photivo/ 

and sorry i can't find your correction.

how should i do?

Original comment by pierre.h...@gmail.com on 2 Apr 2012 at 6:54

GoogleCodeExporter commented 9 years ago
My bad, I forgot to push it. I'm very sorry. It's online now, 
http://code.google.com/p/photivo/source/detail?r=406a9cd4263058f552ecb9329d64624
c376022bf&name=default, please try again from scratch.

greets mike

Original comment by m...@mm-log.com on 2 Apr 2012 at 9:08

GoogleCodeExporter commented 9 years ago
ok: i pulled the new software and it works now

Original comment by pierre.h...@gmail.com on 3 Apr 2012 at 7:26