mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-25 05:55:13 +00:00
LibVT: Add parameter names in function signatures for clarity
This commit is contained in:
parent
3549623dc6
commit
174583cda5
Notes:
sideshowbarker
2024-07-19 09:46:59 +09:00
Author: https://github.com/linusg Commit: https://github.com/SerenityOS/serenity/commit/174583cda59 Pull-request: https://github.com/SerenityOS/serenity/pull/1137 Reviewed-by: https://github.com/awesomekling
1 changed files with 3 additions and 3 deletions
|
@ -148,7 +148,7 @@ private:
|
||||||
|
|
||||||
void emit_string(const StringView&);
|
void emit_string(const StringView&);
|
||||||
|
|
||||||
void alter_mode(bool, bool, const ParamVector&);
|
void alter_mode(bool should_set, bool question_param, const ParamVector&);
|
||||||
|
|
||||||
void CUU(const ParamVector&);
|
void CUU(const ParamVector&);
|
||||||
void CUD(const ParamVector&);
|
void CUD(const ParamVector&);
|
||||||
|
@ -171,8 +171,8 @@ private:
|
||||||
void escape$S(const ParamVector&);
|
void escape$S(const ParamVector&);
|
||||||
void escape$T(const ParamVector&);
|
void escape$T(const ParamVector&);
|
||||||
void escape$L(const ParamVector&);
|
void escape$L(const ParamVector&);
|
||||||
void RM(bool, const ParamVector&);
|
void RM(bool question_param, const ParamVector&);
|
||||||
void SM(bool, const ParamVector&);
|
void SM(bool question_param, const ParamVector&);
|
||||||
void DA(const ParamVector&);
|
void DA(const ParamVector&);
|
||||||
void HVP(const ParamVector&);
|
void HVP(const ParamVector&);
|
||||||
void NEL();
|
void NEL();
|
||||||
|
|
Loading…
Add table
Reference in a new issue