1 diff -r 6b4e7138042b src/action.cpp
2 --- a/src/action.cpp Sat Jan 27 17:29:39 2007 +0300
3 +++ b/src/action.cpp Sun Jul 13 22:21:27 2008 +0400
5 // See ../LICENSE.txt for license details.
7 // $Id: action.cpp 734 2004-09-27 18:15:45Z garbeam $
10 +#include <stdlib.h> // free
11 +#include <string.h> // strdup
16 diff -r 6b4e7138042b src/frame.h
17 --- a/src/frame.h Sat Jan 27 17:29:39 2007 +0300
18 +++ b/src/frame.h Sun Jul 13 22:21:27 2008 +0400
20 void focus(Client *client);
22 void attach(Client *client);
23 - Client *Frame::detach(Client *client);
24 + Client *detach(Client *client);
26 virtual Window window();
28 diff -r 6b4e7138042b src/inputbar.cpp
29 --- a/src/inputbar.cpp Sat Jan 27 17:29:39 2007 +0300
30 +++ b/src/inputbar.cpp Sun Jul 13 22:21:27 2008 +0400
35 - entryBegin_ = entryEnd_ = 0;
36 + entryBegin_ = entryEnd_ = (Sstring::iterator)0;
37 partitionBegin_ = selected_ = entryBegin_;
39 LOGDEBUG("creating input");
41 clearPrevPartitionsStack();
44 - entryBegin_ = entryEnd_ = 0;
45 + entryBegin_ = entryEnd_ = (Sstring::iterator)0;
46 partitionBegin_ = selected_ = entryBegin_;
49 diff -r 6b4e7138042b src/kernel.h
50 --- a/src/kernel.h Sat Jan 27 17:29:39 2007 +0300
51 +++ b/src/kernel.h Sun Jul 13 22:21:27 2008 +0400
56 - Prompt *Kernel::defaultPrompt() const;
57 + Prompt *defaultPrompt() const;
59 void setMenuMode(bool isMenuMode);
61 diff -r 6b4e7138042b src/logger.cpp
62 --- a/src/logger.cpp Sat Jan 27 17:29:39 2007 +0300
63 +++ b/src/logger.cpp Sun Jul 13 22:21:27 2008 +0400
65 // See ../LICENSE.txt for license details.
67 // $Id: logger.cpp 734 2004-09-27 18:15:45Z garbeam $
70 +#include <stdlib.h> // exit
75 diff -r 6b4e7138042b src/main.cpp
76 --- a/src/main.cpp Sat Jan 27 17:29:39 2007 +0300
77 +++ b/src/main.cpp Sun Jul 13 22:21:27 2008 +0400
80 #include <unistd.h> // getopt stuff
81 #include <stdlib.h> // getenv stuff
82 +#include <string.h> // strlen
86 diff -r 6b4e7138042b src/util.cpp
87 --- a/src/util.cpp Sat Jan 27 17:29:39 2007 +0300
88 +++ b/src/util.cpp Sun Jul 13 22:21:27 2008 +0400
93 +#include <stdlib.h> // atoi
97 diff -r 6b4e7138042b src/wmiremote.cpp
98 --- a/src/wmiremote.cpp Sat Jan 27 17:29:39 2007 +0300
99 +++ b/src/wmiremote.cpp Sun Jul 13 22:21:27 2008 +0400
103 #include <unistd.h> // getopt stuff
104 +#include <stdlib.h> // exit
105 #include <X11/Xatom.h>
106 #include <X11/Xlib.h>
107 #include <X11/Xutil.h>