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 Jun 18, 2024
1 parent effe571 commit 840bf10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/langcoder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -291,11 +291,11 @@ std::pair< quint32, quint32 > LangCoder::findLangIdPairFromStr( QString const &
auto to = guessId( m.captured( 2 ).toLower() );

if ( from != 0 && to != 0 ) {
return {from, to};
return { from, to };
}
}

return {0, 0};
return { 0, 0 };
}

bool LangCoder::isLanguageRTL( quint32 _code )
Expand Down

0 comments on commit 840bf10

Please sign in to comment.