Skip to content

Commit

Permalink
updated to latest ticcutils
Browse files Browse the repository at this point in the history
  • Loading branch information
kosloot committed Nov 17, 2024
1 parent 45e8197 commit 2bde8fe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ PKG_CHECK_MODULES([ICU], [icu-uc >= 50 icu-io] )
CXXFLAGS="$CXXFLAGS $ICU_CFLAGS"
LIBS="$ICU_LIBS $LIBS"

PKG_CHECK_MODULES([ticcutils], [ticcutils >= 0.29] )
PKG_CHECK_MODULES([ticcutils], [ticcutils >= 0.36] )
CXXFLAGS="$CXXFLAGS $ticcutils_CFLAGS"
LIBS="$LIBS $ticcutils_LIBS"

Expand Down
2 changes: 1 addition & 1 deletion src/engine_tests.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ void engine_test005b(){
Document d("debug='PARSING|SERIALIZE'");
ofstream os( "/tmp/foliaengine.dbg" );
TiCC::LogStream ds( os );
ds.setlevel( LogHeavy );
ds.set_level( LogHeavy );
proc.set_debug(true);
proc.set_dbg_stream( &ds );
assertNoThrow( proc.init_doc( "tests/example.xml" ) );
Expand Down
2 changes: 1 addition & 1 deletion src/foliatest.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ void test1g() {
Document d("debug='PARSING|SERIALIZE'");
ofstream os( "/tmp/foliatest.dbg" );
TiCC::LogStream ds( os );
ds.setlevel( LogHeavy );
ds.set_level( LogHeavy );
d.set_dbg_stream( &ds );
assertNoThrow( d.read_from_file("tests/example.xml") );
assertNoThrow( d.save( "/tmp/example.xml" ) );
Expand Down

0 comments on commit 2bde8fe

Please sign in to comment.