aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/Image.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/FbTk/Image.cc')
-rw-r--r--src/FbTk/Image.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/FbTk/Image.cc b/src/FbTk/Image.cc
index 98b602c..4ccda5b 100644
--- a/src/FbTk/Image.cc
+++ b/src/FbTk/Image.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: Image.cc,v 1.3 2003/12/16 17:06:51 fluxgen Exp $ 22// $Id: Image.cc,v 1.4 2004/01/02 22:01:08 fluxgen Exp $
23 23
24#include "Image.hh" 24#include "Image.hh"
25#include "StringUtil.hh" 25#include "StringUtil.hh"
@@ -65,14 +65,16 @@ PixmapWithMask *Image::load(const std::string &filename, int screen_num) {
65 if (pm == 0 && s_search_paths.size()) { 65 if (pm == 0 && s_search_paths.size()) {
66 // first we need to get basename of current filename 66 // first we need to get basename of current filename
67 std::string base_filename = StringUtil::basename(filename); 67 std::string base_filename = StringUtil::basename(filename);
68 std::string path = "";
68 // append each search path and try to load 69 // append each search path and try to load
69 StringList::iterator it = s_search_paths.begin(); 70 StringList::iterator it = s_search_paths.begin();
70 StringList::iterator it_end = s_search_paths.end(); 71 StringList::iterator it_end = s_search_paths.end();
71 for (; it != it_end && pm == 0; ++it) { 72 for (; it != it_end && pm == 0; ++it) {
72 // append search path and try load it 73 // append search path and try load it
73 std::string path = StringUtil::expandFilename(*it); 74 path = StringUtil::expandFilename(*it);
74 pm = s_image_map[extension]->load(path + "/" + base_filename, screen_num); 75 pm = s_image_map[extension]->load(path + "/" + base_filename, screen_num);
75 } 76 }
77
76 } 78 }
77 79
78 return pm; 80 return pm;