fix missing namespace
This commit is contained in:
parent
5136d4936e
commit
93696499f3
1 changed files with 2 additions and 2 deletions
|
@ -20,7 +20,7 @@
|
||||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||||
// DEALINGS IN THE SOFTWARE.
|
// DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
// $Id: FbMenuParser.cc,v 1.2 2004/06/10 11:42:35 fluxgen Exp $
|
// $Id: FbMenuParser.cc,v 1.3 2004/10/21 10:49:20 akir Exp $
|
||||||
|
|
||||||
#include "FbMenuParser.hh"
|
#include "FbMenuParser.hh"
|
||||||
|
|
||||||
|
@ -126,7 +126,7 @@ Parser::Item FbMenuParser::nextItem() {
|
||||||
}
|
}
|
||||||
|
|
||||||
bool FbMenuParser::nextLine() {
|
bool FbMenuParser::nextLine() {
|
||||||
if (!getline(m_file, m_curr_line))
|
if (!std::getline(m_file, m_curr_line))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
m_row++;
|
m_row++;
|
||||||
|
|
Loading…
Reference in a new issue