Reverted back changes -- not a bug

This commit is contained in:
Alexander S. Aganichev 2002-07-06 07:27:18 +00:00
parent 69b0494b8c
commit a1717dc3de
2 changed files with 1 additions and 4 deletions

View File

@ -12,9 +12,6 @@ ______________________________________________________________________
Notes for GoldED+ 1.1.5, /snapshot/ Notes for GoldED+ 1.1.5, /snapshot/
______________________________________________________________________ ______________________________________________________________________
- Origin line was not always used for the particular echo if defined
in the AREADEF line. Fixed.
- Fixed header encoding in exported SOUP packets. - Fixed header encoding in exported SOUP packets.
- Fixed small problem in editor when quoteline might left not painted - Fixed small problem in editor when quoteline might left not painted

View File

@ -108,7 +108,7 @@ public:
void set_aka(ftn_addr& a) { cfg.aka = a; } void set_aka(ftn_addr& a) { cfg.aka = a; }
void set_originno(int o) { cfg.originno = o; } void set_originno(int o) { cfg.originno = o; }
void set_attr(Attr& a) { cfg.attr = a; } void set_attr(Attr& a) { cfg.attr = a; }
void set_origin(char* o) { std::string tmp = o; cfg.originno = cfg.setorigin(tmp); } void set_origin(char* o) { std::string tmp = o; cfg.setorigin(tmp); }
void set_scan(bool s) { cfg.scan = (byte)s; } void set_scan(bool s) { cfg.scan = (byte)s; }
void set_scanexcl(bool s) { cfg.scanexcl = (byte)s; } void set_scanexcl(bool s) { cfg.scanexcl = (byte)s; }