diff options
Diffstat (limited to 'src/Screen.cc')
-rw-r--r-- | src/Screen.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Screen.cc b/src/Screen.cc index 0a22c25..4dec665 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.263 2004/01/19 22:07:24 fluxgen Exp $ | 25 | // $Id: Screen.cc,v 1.264 2004/01/21 14:14:18 fluxgen Exp $ |
26 | 26 | ||
27 | 27 | ||
28 | #include "Screen.hh" | 28 | #include "Screen.hh" |
@@ -1980,7 +1980,7 @@ bool BScreen::parseMenuFile(ifstream &file, FbTk::Menu &menu, int &row) { | |||
1980 | // perform shell style ~ home directory expansion | 1980 | // perform shell style ~ home directory expansion |
1981 | string newfile(FbTk::StringUtil::expandFilename(str_label)); | 1981 | string newfile(FbTk::StringUtil::expandFilename(str_label)); |
1982 | 1982 | ||
1983 | if (newfile.size() != 0) { | 1983 | if (!newfile.empty()) { |
1984 | if (!FbTk::Directory::isRegularFile(newfile)) { | 1984 | if (!FbTk::Directory::isRegularFile(newfile)) { |
1985 | fprintf(stderr, | 1985 | fprintf(stderr, |
1986 | i18n-> | 1986 | i18n-> |