diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | src/WinClient.cc | 4 | ||||
-rw-r--r-- | src/Window.cc | 4 | ||||
-rw-r--r-- | src/tests/signaltest.cc | 1 | ||||
-rw-r--r-- | util/fbrun/FbRun.cc | 3 |
5 files changed, 11 insertions, 4 deletions
@@ -1,5 +1,8 @@ | |||
1 | (Format: Year/Month/Day) | 1 | (Format: Year/Month/Day) |
2 | Changes for 0.9.2: | 2 | Changes for 0.9.2: |
3 | *03/04/27 | ||
4 | * Fix cassert #includes (Simon) | ||
5 | Window.cc WinClient.cc FbRun.cc signaltest.cc | ||
3 | *03/04/26: | 6 | *03/04/26: |
4 | * Add remember layer (Simon) | 7 | * Add remember layer (Simon) |
5 | Remember.hh/cc | 8 | Remember.hh/cc |
diff --git a/src/WinClient.cc b/src/WinClient.cc index 7f15476..6a41434 100644 --- a/src/WinClient.cc +++ b/src/WinClient.cc | |||
@@ -19,7 +19,7 @@ | |||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | // DEALINGS IN THE SOFTWARE. | 20 | // DEALINGS IN THE SOFTWARE. |
21 | 21 | ||
22 | // $Id: WinClient.cc,v 1.4 2003/04/25 11:21:17 fluxgen Exp $ | 22 | // $Id: WinClient.cc,v 1.5 2003/04/27 02:26:21 rathnor Exp $ |
23 | 23 | ||
24 | #include "WinClient.hh" | 24 | #include "WinClient.hh" |
25 | 25 | ||
@@ -33,6 +33,8 @@ | |||
33 | #include <iostream> | 33 | #include <iostream> |
34 | #include <algorithm> | 34 | #include <algorithm> |
35 | #include <iterator> | 35 | #include <iterator> |
36 | #include <cassert> | ||
37 | |||
36 | using namespace std; | 38 | using namespace std; |
37 | 39 | ||
38 | WinClient::WinClient(Window win, FluxboxWindow &fbwin):FbTk::FbWindow(win), | 40 | WinClient::WinClient(Window win, FluxboxWindow &fbwin):FbTk::FbWindow(win), |
diff --git a/src/Window.cc b/src/Window.cc index b6e29c7..d148cdc 100644 --- a/src/Window.cc +++ b/src/Window.cc | |||
@@ -22,7 +22,7 @@ | |||
22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
23 | // DEALINGS IN THE SOFTWARE. | 23 | // DEALINGS IN THE SOFTWARE. |
24 | 24 | ||
25 | // $Id: Window.cc,v 1.149 2003/04/26 05:42:35 rathnor Exp $ | 25 | // $Id: Window.cc,v 1.150 2003/04/27 02:26:21 rathnor Exp $ |
26 | 26 | ||
27 | #include "Window.hh" | 27 | #include "Window.hh" |
28 | 28 | ||
@@ -55,7 +55,7 @@ | |||
55 | #include <cstring> | 55 | #include <cstring> |
56 | #include <cstdio> | 56 | #include <cstdio> |
57 | #include <iostream> | 57 | #include <iostream> |
58 | 58 | #include <cassert> | |
59 | 59 | ||
60 | using namespace std; | 60 | using namespace std; |
61 | 61 | ||
diff --git a/src/tests/signaltest.cc b/src/tests/signaltest.cc index 27f82eb..8ac7d90 100644 --- a/src/tests/signaltest.cc +++ b/src/tests/signaltest.cc | |||
@@ -22,6 +22,7 @@ | |||
22 | #include "../SignalHandler.hh" | 22 | #include "../SignalHandler.hh" |
23 | 23 | ||
24 | #include <iostream> | 24 | #include <iostream> |
25 | #include <cassert> | ||
25 | 26 | ||
26 | using namespace std; | 27 | using namespace std; |
27 | using namespace FbTk; | 28 | using namespace FbTk; |
diff --git a/util/fbrun/FbRun.cc b/util/fbrun/FbRun.cc index 2d5499a..992255f 100644 --- a/util/fbrun/FbRun.cc +++ b/util/fbrun/FbRun.cc | |||
@@ -19,7 +19,7 @@ | |||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | // DEALINGS IN THE SOFTWARE. | 20 | // DEALINGS IN THE SOFTWARE. |
21 | 21 | ||
22 | // $Id: FbRun.cc,v 1.10 2003/03/22 11:33:04 fluxgen Exp $ | 22 | // $Id: FbRun.cc,v 1.11 2003/04/27 02:26:21 rathnor Exp $ |
23 | 23 | ||
24 | #include "FbRun.hh" | 24 | #include "FbRun.hh" |
25 | 25 | ||
@@ -36,6 +36,7 @@ | |||
36 | 36 | ||
37 | #include <iostream> | 37 | #include <iostream> |
38 | #include <fstream> | 38 | #include <fstream> |
39 | #include <cassert> | ||
39 | 40 | ||
40 | using namespace std; | 41 | using namespace std; |
41 | FbRun::FbRun(int x, int y, size_t width): | 42 | FbRun::FbRun(int x, int y, size_t width): |