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

(-)boinc-6.4.5.orig/clientgui/common/wxFlatNotebook.cpp (-1 / +1 lines)
Lines 605-615 Link Here
605
// 
605
// 
606
//	wxPageContainerBase
606
//	wxPageContainerBase
607
//
607
//
608
///////////////////////////////////////////////////////////////////////////////////////////
608
///////////////////////////////////////////////////////////////////////////////////////////
609
609
610
BEGIN_EVENT_TABLE(wxPageContainerBase, wxControl)
610
BEGIN_EVENT_TABLE(wxPageContainerBase, wxPanel)
611
EVT_PAINT(wxPageContainerBase::OnPaint)
611
EVT_PAINT(wxPageContainerBase::OnPaint)
612
EVT_SIZE(wxPageContainerBase::OnSize)
612
EVT_SIZE(wxPageContainerBase::OnSize)
613
EVT_LEFT_DOWN(wxPageContainerBase::OnLeftDown)
613
EVT_LEFT_DOWN(wxPageContainerBase::OnLeftDown)
614
EVT_LEFT_UP(wxPageContainerBase::OnLeftUp)
614
EVT_LEFT_UP(wxPageContainerBase::OnLeftUp)
615
EVT_RIGHT_DOWN(wxPageContainerBase::OnRightDown)
615
EVT_RIGHT_DOWN(wxPageContainerBase::OnRightDown)
(-)boinc-6.4.5.orig/sched/sched_driver.cpp (+1 lines)
Lines 38-47 Link Here
38
#define AUTHENTICATOR    "49bcae97f1788385b0f41123acdf5694"
38
#define AUTHENTICATOR    "49bcae97f1788385b0f41123acdf5694"
39
    // authenticator of a user record
39
    // authenticator of a user record
40
#define HOSTID "7"
40
#define HOSTID "7"
41
    // ID of a host belonging to that user
41
    // ID of a host belonging to that user
42
42
43
#include <cstdio>
43
#include <vector>
44
#include <vector>
44
#include "util.h"
45
#include "util.h"
45
46
46
using std::vector;
47
using std::vector;
47
48
(-)boinc-6.4.5.orig/sched/sched_util.cpp (-1 / +1 lines)
Lines 102-112 Link Here
102
#ifndef _USING_FCGI_
102
#ifndef _USING_FCGI_
103
int try_fopen(const char* path, FILE*& f, const char* mode) {
103
int try_fopen(const char* path, FILE*& f, const char* mode) {
104
#else
104
#else
105
int try_fopen(const char* path, FCGI_FILE*& f, const char *mode) {
105
int try_fopen(const char* path, FCGI_FILE*& f, const char *mode) {
106
#endif
106
#endif
107
    char* p;
107
    const char* p;
108
    DIR* d;
108
    DIR* d;
109
    char dirpath[256];
109
    char dirpath[256];
110
110
111
#ifndef _USING_FCGI_
111
#ifndef _USING_FCGI_
112
    f = fopen(path, mode);
112
    f = fopen(path, mode);

Return to bug 269618