summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2004-05-02 20:42:56 (GMT)
committerfluxgen <fluxgen>2004-05-02 20:42:56 (GMT)
commitac24a4ae8da8ddecdbdf1901aa2182307249dfb1 (patch)
treef2c12297c7505a152585ebc3dcb55490d56c3bc4
parent73d2e5b7da332cbc42c987889bb2df879d354f8e (diff)
downloadfluxbox_lack-ac24a4ae8da8ddecdbdf1901aa2182307249dfb1.zip
fluxbox_lack-ac24a4ae8da8ddecdbdf1901aa2182307249dfb1.tar.bz2
copyright update
-rw-r--r--src/FbTk/StringUtil.cc4
-rw-r--r--src/FbTk/StringUtil.hh5
2 files changed, 5 insertions, 4 deletions
diff --git a/src/FbTk/StringUtil.cc b/src/FbTk/StringUtil.cc
index b83300d..92d9eb3 100644
--- a/src/FbTk/StringUtil.cc
+++ b/src/FbTk/StringUtil.cc
@@ -1,5 +1,5 @@
1// StringUtil.cc for fluxbox 1// StringUtil.cc for fluxbox
2// Copyright (c) 2001 - 2003 Henrik Kinnunen (fluxgen<at>linuxmail.org) 2// Copyright (c) 2001 - 2004 Henrik Kinnunen (fluxgen<at>fluxbox<dot>org)
3// 3//
4// Permission is hereby granted, free of charge, to any person obtaining a 4// Permission is hereby granted, free of charge, to any person obtaining a
5// copy of this software and associated documentation files (the "Software"), 5// copy of this software and associated documentation files (the "Software"),
@@ -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: StringUtil.cc,v 1.10 2004/02/28 10:46:02 fluxgen Exp $ 22// $Id: StringUtil.cc,v 1.11 2004/05/02 20:42:56 fluxgen Exp $
23 23
24#include "StringUtil.hh" 24#include "StringUtil.hh"
25 25
diff --git a/src/FbTk/StringUtil.hh b/src/FbTk/StringUtil.hh
index 5d6179d..273f24e 100644
--- a/src/FbTk/StringUtil.hh
+++ b/src/FbTk/StringUtil.hh
@@ -1,5 +1,5 @@
1// StringUtil.hh for fluxbox 1// StringUtil.hh for fluxbox
2// Copyright (c) 2001 - 2003 Henrik Kinnunen (fluxgen(at)linuxmail.org) 2// Copyright (c) 2001 - 2004 Henrik Kinnunen (fluxgen(at)fluxbox<dot>org)
3// 3//
4// Permission is hereby granted, free of charge, to any person obtaining a 4// Permission is hereby granted, free of charge, to any person obtaining a
5// copy of this software and associated documentation files (the "Software"), 5// copy of this software and associated documentation files (the "Software"),
@@ -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: StringUtil.hh,v 1.8 2003/12/16 17:06:52 fluxgen Exp $ 22//$Id: StringUtil.hh,v 1.9 2004/05/02 20:42:56 fluxgen Exp $
23 23
24#ifndef FBTK_STRINGUTIL_HH 24#ifndef FBTK_STRINGUTIL_HH
25#define FBTK_STRINGUTIL_HH 25#define FBTK_STRINGUTIL_HH
@@ -37,6 +37,7 @@ const char *strcasestr(const char *str, const char *ptn);
37 37
38/// expands ~ to value of ${HOME} enviroment variable 38/// expands ~ to value of ${HOME} enviroment variable
39std::string expandFilename(const std::string &filename); 39std::string expandFilename(const std::string &filename);
40
40/// @return extension of filename (ex: filename.txt will return txt) 41/// @return extension of filename (ex: filename.txt will return txt)
41std::string findExtension(const std::string &filename); 42std::string findExtension(const std::string &filename);
42 43