.cosmetics

git-svn-id: svn://ultimatepp.org/upp/trunk@11447 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2017-11-11 15:39:18 +00:00
parent 2f86599e51
commit e9a07ff2ab
5 changed files with 7 additions and 6 deletions

View file

@ -168,7 +168,7 @@ void SetIdeModuleUsc(bool (*IdeModuleUsc)(CParser& p));
void UscSetReadMacro(void (*ReadMacro)(CParser& p));
void CleanUsc();
void ParseUscFile(const char *filename) throw(CParser::Error);
void ParseUscFile(const char *filename);
Point ReadNums(CParser& p);
Point ReadPoint(CParser& p);
@ -261,7 +261,7 @@ struct CustomStep {
String command;
String output;
void Load(CParser& p) throw(CParser::Error);
void Load(CParser& p);
String AsString() const;
String GetExt() const;

View file

@ -115,7 +115,8 @@ String CustomStep::AsString() const {
AsCString(output, 70, "\t") + ";\n\n";
}
void CustomStep::Load(CParser& p) throw(CParser::Error) {
void CustomStep::Load(CParser& p)
{
when = ReadWhen(p);
ext = p.ReadString();
p.PassChar(',');

View file

@ -68,7 +68,7 @@ void UscSetReadMacro(void (*ReadMacro)(CParser& p))
sReadMacro = ReadMacro;
}
void ParseUscFile(const char *filename) throw(CParser::Error)
void ParseUscFile(const char *filename)
{
String d = LoadFile(filename);
try {

View file

@ -67,7 +67,7 @@ void LayUscClean()
LayLib();
}
bool LayUscParse(CParser& p) throw(CParser::Error)
bool LayUscParse(CParser& p)
{
if(p.Id("ctrl"))
ReadClass(p, LAYOUT_CTRL);

View file

@ -381,7 +381,7 @@ LayDesigner *CreateLayDesigner(const char *filename, byte charset, const char *c
}
void LayUscClean();
bool LayUscParse(CParser& p) throw(CParser::Error);
bool LayUscParse(CParser& p);
void SerializeLayEditPos(Stream& s);
bool IsLayFile(const char *path)