From 64ee641bd2f9277476f07c207d2b7c08757e459f Mon Sep 17 00:00:00 2001 From: Nikolaos Georgiou Date: Tue, 6 Sep 2022 07:25:15 +0200 Subject: [PATCH] refactor: Rename unit StrConsts to StyleNames --- Chameleon.lpi | 2 +- Chameleon.lpr | 2 +- StrConsts.pas => StyleNames.pas | 2 +- frmMain.pas | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) rename StrConsts.pas => StyleNames.pas (99%) diff --git a/Chameleon.lpi b/Chameleon.lpi index b722d2a..ea77117 100644 --- a/Chameleon.lpi +++ b/Chameleon.lpi @@ -73,7 +73,7 @@ - + diff --git a/Chameleon.lpr b/Chameleon.lpr index 94bfe3d..d5298c7 100644 --- a/Chameleon.lpr +++ b/Chameleon.lpr @@ -9,7 +9,7 @@ uses frmResults in 'frmResults.pas' {Results}, Writers in 'Writers.pas', DfmEngine in 'DfmEngine.pas', - StrConsts in 'StrConsts.pas', + StyleNames in 'StyleNames.pas', about1 in 'about1.pas' {AboutBox}; diff --git a/StrConsts.pas b/StyleNames.pas similarity index 99% rename from StrConsts.pas rename to StyleNames.pas index f1301f3..80c0fba 100644 --- a/StrConsts.pas +++ b/StyleNames.pas @@ -1,4 +1,4 @@ -unit StrConsts; +unit StyleNames; {$MODE Delphi} diff --git a/frmMain.pas b/frmMain.pas index facb69f..f2bcb7f 100644 --- a/frmMain.pas +++ b/frmMain.pas @@ -65,7 +65,7 @@ var implementation -uses frmResults, Writers, DfmEngine, StrConsts, about1; +uses frmResults, Writers, DfmEngine, StyleNames, about1; {$R *.lfm}