Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 595250
Collapse All | Expand All

(-)file_not_specified_in_diff (-9 / +9 lines)
Line  Link Here
0
-- abiword-3.0.1.orig/plugins/collab/backends/service/xp/RealmProtocol.cpp
0
++ abiword-3.0.1/plugins/collab/backends/service/xp/RealmProtocol.cpp
Lines 6-13 namespace protocolv1 { Link Here
6
6
7
#define MAX_PACKET_DATA_SIZE 64*1024*1024
7
#define MAX_PACKET_DATA_SIZE 64*1024*1024
8
		
8
		
9
#define RPV1_PACKET_NONEXISTENT -2
9
#define RPV1_PACKET_NONEXISTENT uint32_t(-2)
10
#define RPV1_PACKET_VARIABLE -1
10
#define RPV1_PACKET_VARIABLE uint32_t(-1)
11
	
11
	
12
static uint32_t body_size[6] = {
12
static uint32_t body_size[6] = {
13
	RPV1_PACKET_NONEXISTENT, /* 0: reserved */
13
	RPV1_PACKET_NONEXISTENT, /* 0: reserved */
14
-- abiword-3.0.1.orig/plugins/collab/backends/service/xp/soa_soup.cpp
14
++ abiword-3.0.1/plugins/collab/backends/service/xp/soa_soup.cpp
Lines 163-169 namespace soup_soa { Link Here
163
	
163
	
164
	static bool _invoke(const std::string& /*url*/, const soa::method_invocation& /*mi*/, SoaSoupSession& sess, std::string& result) {
164
	static bool _invoke(const std::string& /*url*/, const soa::method_invocation& /*mi*/, SoaSoupSession& sess, std::string& result) {
165
		if (!sess.m_session || !sess.m_msg )
165
		if (!sess.m_session || !sess.m_msg )
166
			return soa::GenericPtr();
166
			return false;
167
167
168
		guint status = soup_session_send_message (sess.m_session, sess.m_msg);
168
		guint status = soup_session_send_message (sess.m_session, sess.m_msg);
169
		if (!(SOUP_STATUS_IS_SUCCESSFUL (status) ||
169
		if (!(SOUP_STATUS_IS_SUCCESSFUL (status) ||
170
-- abiword-3.0.1.orig/plugins/latex/xp/ie_exp_LaTeX.cpp
170
++ abiword-3.0.1/plugins/latex/xp/ie_exp_LaTeX.cpp
Lines 1329-1335 void s_LaTeX_Listener::_outputData(const Link Here
1329
	m_pie->write(sBuf.c_str(),sBuf.size());
1329
	m_pie->write(sBuf.c_str(),sBuf.size());
1330
}
1330
}
1331
1331
1332
#define SUB(a,who) case a: subst = "\\(\\"who"\\)"; return true;
1332
#define SUB(a,who) case a: subst = "\\(\\" who"\\)"; return true;
1333
#define SUBd(a,who) case a: subst = who; return true;
1333
#define SUBd(a,who) case a: subst = who; return true;
1334
static bool _convertLettersToSymbols(char c, const char *& subst)
1334
static bool _convertLettersToSymbols(char c, const char *& subst)
1335
{
1335
{
1336
-- abiword-3.0.1.orig/plugins/xslfo/xp/ie_exp_XSL-FO.cpp
1336
++ abiword-3.0.1/plugins/xslfo/xp/ie_exp_XSL-FO.cpp
Lines 1451-1457 void s_XSL_FO_Listener::_openSection(PT_ Link Here
1451
	{ \
1451
	{ \
1452
		UT_UTF8String esc = szValue; \
1452
		UT_UTF8String esc = szValue; \
1453
		esc.escapeXML(); \
1453
		esc.escapeXML(); \
1454
		buf += " "x"=\""; \
1454
		buf += " " x"=\""; \
1455
		buf += esc.utf8_str(); \
1455
		buf += esc.utf8_str(); \
1456
		buf += "\""; \
1456
		buf += "\""; \
1457
	}
1457
	}

Return to bug 595250