mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 22:02:58 -06:00
.cosmetics
git-svn-id: svn://ultimatepp.org/upp/trunk@11447 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
2f86599e51
commit
e9a07ff2ab
5 changed files with 7 additions and 6 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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(',');
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue