# HG changeset patch # User Pat Downey # Date 1276603761 -3600 # Node ID 8b3b4d191198f3c25ef9bcd530b2e2dcad5f6d34 # Parent 32c1e5a1c52c4f576372b46976f6807061b26d01 Bug 2957: SampleSearch doesn't have a copy constructor, fix the way it's instantiated. diff -r 32c1e5a1c52c -r 8b3b4d191198 qcpix/tsrc/samplesearch/main.cpp --- a/qcpix/tsrc/samplesearch/main.cpp Tue Jun 15 12:49:00 2010 +0100 +++ b/qcpix/tsrc/samplesearch/main.cpp Tue Jun 15 13:09:21 2010 +0100 @@ -23,7 +23,7 @@ int main(int argc, char *argv[]) { QApplication a(argc, argv); - SampleSearch w = SampleSearch(); + SampleSearch w; w.show(); int result = a.exec(); //delete w;