aboutsummaryrefslogtreecommitdiff
path: root/src/FbMenuParser.cc
diff options
context:
space:
mode:
authorakir <akir>2004-10-21 10:49:20 (GMT)
committerakir <akir>2004-10-21 10:49:20 (GMT)
commit93696499f35c576895a27e47da3d0b4b25ed80b2 (patch)
tree552c0b6a898e08de8f34bb65277569a3f966f549 /src/FbMenuParser.cc
parent5136d4936eb22c2f9367e186305be91ad2630db0 (diff)
downloadfluxbox-93696499f35c576895a27e47da3d0b4b25ed80b2.zip
fluxbox-93696499f35c576895a27e47da3d0b4b25ed80b2.tar.bz2
fix missing namespace
Diffstat (limited to 'src/FbMenuParser.cc')
-rw-r--r--src/FbMenuParser.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/FbMenuParser.cc b/src/FbMenuParser.cc
index 0f0b301..135283e 100644
--- a/src/FbMenuParser.cc
+++ b/src/FbMenuParser.cc
@@ -20,7 +20,7 @@
20// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 20// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21// DEALINGS IN THE SOFTWARE. 21// DEALINGS IN THE SOFTWARE.
22 22
23// $Id: FbMenuParser.cc,v 1.2 2004/06/10 11:42:35 fluxgen Exp $ 23// $Id: FbMenuParser.cc,v 1.3 2004/10/21 10:49:20 akir Exp $
24 24
25#include "FbMenuParser.hh" 25#include "FbMenuParser.hh"
26 26
@@ -126,7 +126,7 @@ Parser::Item FbMenuParser::nextItem() {
126} 126}
127 127
128bool FbMenuParser::nextLine() { 128bool FbMenuParser::nextLine() {
129 if (!getline(m_file, m_curr_line)) 129 if (!std::getline(m_file, m_curr_line))
130 return false; 130 return false;
131 131
132 m_row++; 132 m_row++;