aboutsummaryrefslogtreecommitdiff
path: root/src/fluxbox.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2002-10-15 20:49:00 (GMT)
committerfluxgen <fluxgen>2002-10-15 20:49:00 (GMT)
commit53f27ef6c8067c61a6d01768de012e4c912b8276 (patch)
tree1ee5937ae049a9266f7df8d955c70d85e9ec3a7a /src/fluxbox.hh
parent190fb70173e45fbfb3ea2c6195102598e1f4fb34 (diff)
downloadfluxbox-53f27ef6c8067c61a6d01768de012e4c912b8276.zip
fluxbox-53f27ef6c8067c61a6d01768de012e4c912b8276.tar.bz2
auto_ptr for key
Diffstat (limited to 'src/fluxbox.hh')
-rw-r--r--src/fluxbox.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fluxbox.hh b/src/fluxbox.hh
index 4d55152..6cca1c6 100644
--- a/src/fluxbox.hh
+++ b/src/fluxbox.hh
@@ -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: fluxbox.hh,v 1.29 2002/10/13 21:55:56 fluxgen Exp $ 25// $Id: fluxbox.hh,v 1.30 2002/10/15 20:49:00 fluxgen Exp $
26 26
27#ifndef FLUXBOX_HH 27#ifndef FLUXBOX_HH
28#define FLUXBOX_HH 28#define FLUXBOX_HH
@@ -275,7 +275,7 @@ private:
275 std::string rc_file; ///< resource filename 275 std::string rc_file; ///< resource filename
276 char **argv; 276 char **argv;
277 int argc; 277 int argc;
278 Keys *key; 278 std::auto_ptr<Keys> key;
279 std::string slitlist_path; 279 std::string slitlist_path;
280 //default arguments for titlebar left and right 280 //default arguments for titlebar left and right
281 static Fluxbox::Titlebar m_titlebar_left[], m_titlebar_right[]; 281 static Fluxbox::Titlebar m_titlebar_left[], m_titlebar_right[];