chore: correct spelling of is_quitting in electron::Browser (#29948)
This commit is contained in:
parent
60366ad171
commit
6c251da201
2 changed files with 11 additions and 11 deletions
|
@ -305,7 +305,7 @@ class Browser : public WindowListObserver {
|
|||
#endif
|
||||
|
||||
bool is_shutting_down() const { return is_shutdown_; }
|
||||
bool is_quiting() const { return is_quiting_; }
|
||||
bool is_quitting() const { return is_quitting_; }
|
||||
bool is_ready() const { return is_ready_; }
|
||||
v8::Local<v8::Value> WhenReady(v8::Isolate* isolate);
|
||||
|
||||
|
@ -322,7 +322,7 @@ class Browser : public WindowListObserver {
|
|||
// Send the before-quit message and start closing windows.
|
||||
bool HandleBeforeQuit();
|
||||
|
||||
bool is_quiting_ = false;
|
||||
bool is_quitting_ = false;
|
||||
|
||||
private:
|
||||
// WindowListObserver implementations:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue