Skip to content

Commit

Permalink
Fix compilation with Qt 4.7 (issue goldendict#371)
Browse files Browse the repository at this point in the history
  • Loading branch information
Abs62 committed Jul 17, 2013
1 parent a3f856a commit 7d8ce12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdict.cc
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ string SdictDictionary::convert( string const & in )
b = false;
}

if( !result.midRef( n, next - n ).contains( '<' ) )
if( !result.mid( n, next - n ).contains( '<' ) )
{
if( Html::unescape( result.mid( n, next - n ) ).isRightToLeft() != isToLanguageRTL() )
{
Expand Down

0 comments on commit 7d8ce12

Please sign in to comment.