View | Details | Raw Unified | Return to bug 5430
Collapse All | Expand All

(-)client/tlclient/tlclient_config_base.cc (+1 lines)
Lines 6-11 Link Here
6
6
7
#include <string.h>
7
#include <string.h>
8
#include <stdlib.h>
8
#include <stdlib.h>
9
#include <unistd.h> 
9
10
10
#include "tlclient_config_base.h"
11
#include "tlclient_config_base.h"
11
#include "tlclient_util.h"
12
#include "tlclient_util.h"
(-)client/tlclient/services/service_process.cc (+1 lines)
Lines 4-9 Link Here
4
// For more information, see http://www.cendio.com
4
// For more information, see http://www.cendio.com
5
5
6
#include <string.h>
6
#include <string.h>
7
#include <unistd.h>
7
8
8
#include "service_process.h"
9
#include "service_process.h"
9
#include "../tlclient_util.h"
10
#include "../tlclient_util.h"
(-)client/tlclient/services/connection_socket.cc (-1 / +1 lines)
Lines 48-54 Link Here
48
}
48
}
49
49
50
50
51
int ConnectionSocket::sendData(char *data, size_t size)
51
int ConnectionSocket::sendData(const char *data, size_t size)
52
{
52
{
53
    return send(fd, data, size, 0);
53
    return send(fd, data, size, 0);
54
}
54
}
(-)client/tlclient/services/connection_socket.h (-1 / +1 lines)
Lines 20-26 Link Here
20
        ConnectionSocket(Service * parent, int fd );
20
        ConnectionSocket(Service * parent, int fd );
21
        virtual ~ConnectionSocket() = 0;
21
        virtual ~ConnectionSocket() = 0;
22
        int readData();
22
        int readData();
23
        int sendData(char *data, size_t size);
23
        int sendData(const char *data, size_t size);
24
24
25
    protected:
25
    protected:
26
        int descriptor() {
26
        int descriptor() {
(-)client/tlclient/tlclient_tlcontrol.cc (-2 / +1 lines)
Lines 13-19 Link Here
13
#include "tlclient_util.h"
13
#include "tlclient_util.h"
14
#include "tlclient_fltk.h"
14
#include "tlclient_fltk.h"
15
#include <stdio.h>
15
#include <stdio.h>
16
#include <math.h>
17
#include <string.h>
16
#include <string.h>
18
17
19
#include <FL/x.H>
18
#include <FL/x.H>
Lines 860-866 Link Here
860
859
861
    /* Create radio buttons */
860
    /* Create radio buttons */
862
    for (modenum = 0; modenum < modes.size(); modenum++) {
861
    for (modenum = 0; modenum < modes.size(); modenum++) {
863
        row = (unsigned int) floor(modenum / 3);
862
	row = modenum / 3;
864
        column = modenum % 3;
863
        column = modenum % 3;
865
864
866
        screen_size_button[modenum] = new Fl_Round_Button(resolution_group->x() + X_MARGIN + MODEBUTTON_WIDTH*column,
865
        screen_size_button[modenum] = new Fl_Round_Button(resolution_group->x() + X_MARGIN + MODEBUTTON_WIDTH*column,

Return to bug 5430