mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-11-26 07:10:11 +01:00
2018-08-02 Fred Gleason <fredg@paravelsystems.com>
* Modified reports in rdlibrary(1) to display UTF-8 strings correctly.
This commit is contained in:
@@ -848,7 +848,7 @@ QString RDReport::errorText(RDReport::ErrorCode code)
|
||||
}
|
||||
|
||||
|
||||
QString RDReport::LeftJustify(const QString &str,int width) const
|
||||
QString RDReport::leftJustify(const QString &str,int width)
|
||||
{
|
||||
QString ret=str.left(width);
|
||||
|
||||
@@ -860,7 +860,7 @@ QString RDReport::LeftJustify(const QString &str,int width) const
|
||||
}
|
||||
|
||||
|
||||
QString RDReport::RightJustify(const QString &str,int width) const
|
||||
QString RDReport::rightJustify(const QString &str,int width)
|
||||
{
|
||||
QString ret=str.left(width);
|
||||
|
||||
@@ -872,7 +872,7 @@ QString RDReport::RightJustify(const QString &str,int width) const
|
||||
}
|
||||
|
||||
|
||||
QString RDReport::Center(const QString &str,int width) const
|
||||
QString RDReport::center(const QString &str,int width)
|
||||
{
|
||||
QString ret=str.left(width);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user