diff options
author | Mathias Gumz <akira at fluxbox dot org> | 2008-10-09 07:38:42 (GMT) |
---|---|---|
committer | Mathias Gumz <akira at fluxbox dot org> | 2008-10-09 07:38:42 (GMT) |
commit | 93924af160ea303c94a2576b0e57a04e94c9228c (patch) | |
tree | d9a7edb110fa64a699c52c6109d5b4a75f200542 /src/FbTk/App.cc | |
parent | f3bd8e7565a482dd4af9a26a51d94c36f9ac6704 (diff) | |
download | fluxbox_lack-93924af160ea303c94a2576b0e57a04e94c9228c.zip fluxbox_lack-93924af160ea303c94a2576b0e57a04e94c9228c.tar.bz2 |
using namespace instead of a useless class
Diffstat (limited to 'src/FbTk/App.cc')
-rw-r--r-- | src/FbTk/App.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/FbTk/App.cc b/src/FbTk/App.cc index 25c338f..39cd36e 100644 --- a/src/FbTk/App.cc +++ b/src/FbTk/App.cc | |||
@@ -49,14 +49,12 @@ App::App(const char *displayname):m_done(false), m_display(0) { | |||
49 | throw std::string("Couldn't connect to XServer"); | 49 | throw std::string("Couldn't connect to XServer"); |
50 | 50 | ||
51 | FbStringUtil::init(); | 51 | FbStringUtil::init(); |
52 | Image::init(); | ||
53 | } | 52 | } |
54 | 53 | ||
55 | App::~App() { | 54 | App::~App() { |
56 | if (m_display != 0) { | 55 | if (m_display != 0) { |
57 | 56 | ||
58 | Font::shutdown(); | 57 | Font::shutdown(); |
59 | Image::shutdown(); | ||
60 | 58 | ||
61 | XCloseDisplay(m_display); | 59 | XCloseDisplay(m_display); |
62 | m_display = 0; | 60 | m_display = 0; |