summarylogtreecommitdiffstats
path: root/wx3.0-compat.patch
blob: 72fd2ce2c7f5a6d355a768bc0292e5470335dc4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
Description: Fix to build with wxWidgets 3.0
Author: Olly Betts <olly@survex.com>
Last-Update: 2014-08-14

--- a/desktop/src/Mode.h
+++ b/desktop/src/Mode.h
@@ -23,6 +23,7 @@
 #define __BARRYDESKTOP_MODE_H__
 
 #include <wx/wx.h>
+#include <wx/listctrl.h>
 
 class Mode
 {
--- a/desktop/src/bsyncjail.cc
+++ b/desktop/src/bsyncjail.cc
@@ -177,8 +177,8 @@
 void BarrySyncJail::HandleConflict(OpenSync::SyncConflict &conflict)
 {
 	OpenSync::SyncConflict::iterator i;
-	int size = 0;
-	wxChar *buf = 0;
+	size_t size = 0;
+	const wxChar *buf = 0;
 
 	// start with a new sequence ID
 	m_sequenceID++;
@@ -218,7 +218,7 @@
 	}
 
 	// then wait on the server to tell us what choice was made
-	buf = m_conflict_con->Request(CONFLICT_ITEM_ANSWER, &size);
+	buf = (const wxChar *)m_conflict_con->Request(CONFLICT_ITEM_ANSWER, &size);
 	if( buf ) {
 		wxString msg(buf);
 		istringstream iss(string(msg.utf8_str()));
--- a/desktop/src/MigrateDlg.cc
+++ b/desktop/src/MigrateDlg.cc
@@ -81,7 +81,7 @@
 	wxCommandEvent event(MET_PROMPT_PASSWORD, wxID_ANY);
 	event.SetEventObject(m_dlg);
 	event.SetInt(bp.remaining_tries());
-	m_dlg->AddPendingEvent(event);
+	m_dlg->GetEventHandler()->ProcessEvent(event);
 	m_dlg->WaitForEvent();
 
 	password_result = m_dlg->GetPassword().utf8_str();
--- a/src/probe.cc
+++ b/src/probe.cc
@@ -170,7 +170,7 @@
 	// now dump all logged error messages
 	if( auto_dump_log && m_fail_msgs.size() ) {
 		eout(string_vprintf(_("Probe logged %u exception messages:"),
-			m_fail_msgs.size()));
+			(unsigned)m_fail_msgs.size()));
 		for( std::vector<std::string>::const_iterator b = m_fail_msgs.begin();
 			b != m_fail_msgs.end();
 			++b )