Commit 9017fb8467145453a349ef893bb07d97fffd8c2b

Authored by perry.werneck@gmail.com
1 parent 4c0dc7b7

Removendo mensagem de debug

Showing 1 changed file with 1 additions and 5 deletions   Show diff stats
src/classlib/session.cc
... ... @@ -369,11 +369,7 @@
369 369  
370 370 string session::get_string_at(int row, int col, size_t sz)
371 371 {
372   - string str = this->get_text_at(row,col,sz);
373   -
374   - trace("String não convertida: [%s]",str.c_str());
375   -
376   - return this->get_local_text(str.c_str());
  372 + return this->get_local_text(this->get_text_at(row,col,sz).c_str());
377 373 }
378 374  
379 375 int session::set_string_at(int row, int col, const char *str)
... ...