Coding policy fixes.

This commit is contained in:
Wayne Stambaugh
2026-02-04 11:38:42 -05:00
parent 24ef538fad
commit c19341dfe7
14 changed files with 127 additions and 47 deletions
+2 -2
View File
@@ -47,12 +47,12 @@ public:
PushResult PerformPush();
// Virtual method for progress reporting
virtual void ReportProgress(int aCurrent, int aTotal, const wxString& aMessage) {}
virtual void ReportProgress( int aCurrent, int aTotal, const wxString& aMessage ) {}
private:
// Implementation of GIT_PROGRESS's virtual method
void UpdateProgress(int aCurrent, int aTotal, const wxString& aMessage) override;
void UpdateProgress( int aCurrent, int aTotal, const wxString& aMessage ) override;
};
#endif // _GIT_PUSH_HANDLER_H_