aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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++;