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

(-)bbkeys-0.9.0.orig/src/actions.cc (-1 / +2 lines)
Lines 25-31 Link Here
25
#include "actions.hh"
25
#include "actions.hh"
26
26
27
#include <iostream>
27
#include <iostream>
28
#include <string>
28
#include <cstring>
29
#include <cstdlib>
29
#include <sstream>
30
#include <sstream>
30
31
31
Action::Action(enum ActionType type, Display * display, KeyCode keycode, 
32
Action::Action(enum ActionType type, Display * display, KeyCode keycode, 
(-)bbkeys-0.9.0.orig/src/Config.cpp (-1 / +1 lines)
Lines 24-30 Link Here
24
24
25
25
26
#include "Config.h"
26
#include "Config.h"
27
#include <string>
27
#include <cstring>
28
28
29
#include <iostream>
29
#include <iostream>
30
using std::cout;
30
using std::cout;
(-)bbkeys-0.9.0.orig/src/KeyClient.cpp (+1 lines)
Lines 58-63 extern "C" { Link Here
58
#include <iostream>
58
#include <iostream>
59
#include <algorithm>
59
#include <algorithm>
60
#include <vector>
60
#include <vector>
61
#include <cstring>
61
62
62
//--------------------------------------------------------
63
//--------------------------------------------------------
63
// Constructor/Destructor
64
// Constructor/Destructor
(-)bbkeys-0.9.0.orig/src/main.cpp (+2 lines)
Lines 27-32 Link Here
27
27
28
#include "main.h"
28
#include "main.h"
29
29
30
#include <cstring>
31
30
//--------------------------------------------------------
32
//--------------------------------------------------------
31
// parseOptions
33
// parseOptions
32
//--------------------------------------------------------
34
//--------------------------------------------------------
(-)bbkeys-0.9.0.orig/src/Netclient.cpp (+1 lines)
Lines 25-30 Link Here
25
// Methods, ideas, implementations taken from Openbox's XAtom class *sigh*
25
// Methods, ideas, implementations taken from Openbox's XAtom class *sigh*
26
26
27
#include "Netclient.h"
27
#include "Netclient.h"
28
#include <cstring>
28
29
29
Netclient::Netclient (const bt::Display &display)
30
Netclient::Netclient (const bt::Display &display)
30
  : bt::EWMH(display), _display(display)
31
  : bt::EWMH(display), _display(display)

Return to bug 217980