2018-08-02 Fred Gleason <fredg@paravelsystems.com>

* Modified reports in rdlibrary(1) to display UTF-8 strings
	correctly.
This commit is contained in:
Fred Gleason
2018-08-02 16:03:29 -04:00
parent 4e125e2de7
commit 7d54bc3691
15 changed files with 256 additions and 192 deletions

View File

@@ -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);