diff options
author | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2012-03-09 12:30:25 +0200 |
---|---|---|
committer | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2012-03-09 12:30:25 +0200 |
commit | f8597f3dc0e65fc6ac2f1cf1666ed94fc7f0baba (patch) | |
tree | 597aac9e3b8c3253243c4645a4316f2486625046 | |
parent | 6958db9b7d2c93308c66f2fbb6c69c78ec4ef490 (diff) | |
download | fpGUI-f8597f3dc0e65fc6ac2f1cf1666ed94fc7f0baba.tar.xz |
Removes unused / commented code from fpg_stringutils.pas unit.
-rw-r--r-- | src/corelib/fpg_stringutils.pas | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/corelib/fpg_stringutils.pas b/src/corelib/fpg_stringutils.pas index 2b4b3ced..1cc992db 100644 --- a/src/corelib/fpg_stringutils.pas +++ b/src/corelib/fpg_stringutils.pas @@ -1441,22 +1441,6 @@ begin // IBM Graph CodePage 437 (kind-of) to Unicode mapping. // Below is what we had before this function Result := SingleByteToUTF8(s, ArrayIPFToUTF8); - //Result := s; - //Result := StringReplace(Result, Chr($07), #$E2#$80#$A2, [rfReplaceAll, rfIgnoreCase]); // u+2022 small bullet - //Result := tiStrTran(Result, Char(16), '>' ); - //Result := tiStrTran(Result, Char(17), '<' ); - //Result := tiStrTran(Result, Char($1f), '▼' ); - //Result := tiStrTran(Result, Char(179), '│' ); - //Result := tiStrTran(Result, Char(180), '┤' ); - //Result := tiStrTran(Result, Char(191), '┐' ); - //Result := tiStrTran(Result, Char(192), '└' ); - //Result := tiStrTran(Result, Char(193), '┴' ); - //Result := tiStrTran(Result, Char(194), '┬' ); - //Result := tiStrTran(Result, Char(195), '├' ); - //Result := tiStrTran(Result, Char(196), '─' ); - //Result := tiStrTran(Result, Char(197), '┼' ); - //Result := tiStrTran(Result, Char(217), '┘' ); - //Result := tiStrTran(Result, Char(218), '┌' ); end; function SingleByteToUTF8(const s: string; const Table: TCharToUTF8Table): TfpgString; |