5592a99bba
gtimelapse.cpp:753:2: error: reference to 'thread' is ambiguous
thread = CreateThread();
^
./globals.h:23:18: note: candidate found by name lookup is 'thread'
extern MyThread *thread;
^
/usr/include/c++/v1/__threading_support:397:24: note: candidate found by name lookup is 'std::__1::thread'
class _LIBCPP_TYPE_VIS thread;
^
http://beefy6.nyi.freebsd.org/data/121amd64-default/529299/logs/errors/gtimelapse-0.1_16.log
38 lines
1.1 KiB
C++
38 lines
1.1 KiB
C++
--- src/gtimelapse.cpp.orig 2009-06-08 12:13:59 UTC
|
|
+++ src/gtimelapse.cpp
|
|
@@ -155,7 +155,11 @@ wxPanel *display_widgets (wxPanel *panel, CameraWidget
|
|
//cout << "type: RADIO" << endl;
|
|
//cout << "current: " << current << endl;
|
|
|
|
+#ifdef __clang__
|
|
+ wxString *choices = new wxString[cnt];
|
|
+#else
|
|
wxString choices[cnt];
|
|
+#endif
|
|
|
|
for ( i=0; i<cnt; i++) {
|
|
const char *choice;
|
|
@@ -165,6 +169,10 @@ wxPanel *display_widgets (wxPanel *panel, CameraWidget
|
|
choices[i] = mystring;
|
|
}
|
|
|
|
+#ifdef __clang__
|
|
+ delete [] choices;
|
|
+#endif
|
|
+
|
|
wxString title(label, wxConvUTF8);
|
|
wxString default_choice(current, wxConvUTF8);
|
|
wxString choice_label(uselabel, wxConvUTF8);
|
|
@@ -742,9 +750,9 @@ void MyFrame::StartCapture(wxCommandEvent& event){
|
|
|
|
button2->Disable();
|
|
button4->Enable();
|
|
- thread = CreateThread();
|
|
+ ::thread = CreateThread();
|
|
|
|
- if ( thread->Run() != wxTHREAD_NO_ERROR ){
|
|
+ if ( ::thread->Run() != wxTHREAD_NO_ERROR ){
|
|
wxLogError(wxT("Can't start thread!"));
|
|
}else{
|
|
//cout << "Thread started." << endl;
|