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 Jan 3, 2025
1 parent 0b39dae commit 9a4e814
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/common/iconv.cc
Original file line number Diff line number Diff line change
Expand Up @@ -131,5 +131,5 @@ QString Iconv::findValidEncoding( const QStringList & encodings )
}
}
// Return utf-8 as fallback.
return QString("UTF-8");
return QString( "UTF-8" );
}
2 changes: 1 addition & 1 deletion src/common/iconv.hh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public:

static QString toQString( char const * fromEncoding, void const * fromData, size_t dataSize );
// tries to find a valid encoding from the given list of encodings.
static QString findValidEncoding(const QStringList &encodings);
static QString findValidEncoding( const QStringList & encodings );
// Copying/assigning isn't supported
Q_DISABLE_COPY_MOVE( Iconv );
};

0 comments on commit 9a4e814

Please sign in to comment.