Skip to content

Commit

Permalink
[autofix.ci] apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Sep 30, 2024
1 parent 08e0f13 commit 756aa45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/config.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1157,7 +1157,7 @@ Class load()

c.showingDictBarNames = ( root.namedItem( "showingDictBarNames" ).toElement().text() == "1" );

c.usingToolbarsIconSize =( root.namedItem( "usingToolbarsIconSize" ).toElement().text().toInt() ) ;
c.usingToolbarsIconSize = ( root.namedItem( "usingToolbarsIconSize" ).toElement().text().toInt() );

if ( !root.namedItem( "historyExportPath" ).isNull() )
c.historyExportPath = root.namedItem( "historyExportPath" ).toElement().text();
Expand Down Expand Up @@ -2152,7 +2152,7 @@ void save( Class const & c )
root.appendChild( opt );

opt = dd.createElement( "usingToolbarsIconSize" );
opt.appendChild( dd.createTextNode( QString::number( c.usingToolbarsIconSize ) ) );
opt.appendChild( dd.createTextNode( QString::number( c.usingToolbarsIconSize ) ) );
root.appendChild( opt );

if ( !c.historyExportPath.isEmpty() ) {
Expand Down

0 comments on commit 756aa45

Please sign in to comment.