Bug 2957: SampleSearch doesn't have a copy constructor, fix the way it's instantiated. GCC_SURGE
authorPat Downey <patd@symbian.org>
Tue, 15 Jun 2010 13:09:21 +0100
branchGCC_SURGE
changeset 6 8b3b4d191198
parent 5 32c1e5a1c52c
child 12 e3bafe42f98a
Bug 2957: SampleSearch doesn't have a copy constructor, fix the way it's instantiated.
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;