aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-08-17 19:06:10 (GMT)
committerfluxgen <fluxgen>2003-08-17 19:06:10 (GMT)
commitb25e9d0c202877a8c80404f08dff91cf5eda1009 (patch)
treed601279c98fc1fdc2959679515f285c33dea11b9 /src
parent5baf2304dfbe4b2f463b440568436c4178afd0da (diff)
downloadfluxbox-b25e9d0c202877a8c80404f08dff91cf5eda1009.zip
fluxbox-b25e9d0c202877a8c80404f08dff91cf5eda1009.tar.bz2
minor fix
Diffstat (limited to 'src')
-rw-r--r--src/Screen.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Screen.cc b/src/Screen.cc
index 5106b6b..efe7cb8 100644
--- a/src/Screen.cc
+++ b/src/Screen.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: Screen.cc,v 1.220 2003/08/17 13:21:32 fluxgen Exp $ 25// $Id: Screen.cc,v 1.221 2003/08/17 19:06:10 fluxgen Exp $
26 26
27 27
28#include "Screen.hh" 28#include "Screen.hh"
@@ -2068,7 +2068,7 @@ void BScreen::createStyleMenu(FbTk::Menu &menu,
2068 int slen = stylesdir.size(); 2068 int slen = stylesdir.size();
2069 // for each file in directory add filename and path to menu 2069 // for each file in directory add filename and path to menu
2070 for (size_t file_index = 0; file_index < dir.entries(); file_index++) { 2070 for (size_t file_index = 0; file_index < dir.entries(); file_index++) {
2071 std::string style(stylesdir + '/' + filelist[file_index]) 2071 std::string style(stylesdir + '/' + filelist[file_index]);
2072 2072
2073 if (FbTk::Directory::isRegularFile(style)) { 2073 if (FbTk::Directory::isRegularFile(style)) {
2074 FbTk::MenuItem *item = new StyleMenuItem(filelist[file_index], style); 2074 FbTk::MenuItem *item = new StyleMenuItem(filelist[file_index], style);