chore: remove unused arg from BaseWindow::GetBackgroundColor() (#44906)
chore: remove unused gin_helper::Arguments* arg from BaseWindow::GetBackgroundColor()
looks like this was added in db79734b
but never used
This commit is contained in:
parent
06612cf5d4
commit
a7fa6e89b5
2 changed files with 2 additions and 2 deletions
|
@ -669,7 +669,7 @@ void BaseWindow::SetBackgroundColor(const std::string& color_name) {
|
||||||
window_->SetBackgroundColor(color);
|
window_->SetBackgroundColor(color);
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string BaseWindow::GetBackgroundColor(gin_helper::Arguments* args) const {
|
std::string BaseWindow::GetBackgroundColor() const {
|
||||||
return ToRGBHex(window_->GetBackgroundColor());
|
return ToRGBHex(window_->GetBackgroundColor());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -164,7 +164,7 @@ class BaseWindow : public gin_helper::TrackableObject<BaseWindow>,
|
||||||
bool IsKiosk() const;
|
bool IsKiosk() const;
|
||||||
bool IsTabletMode() const;
|
bool IsTabletMode() const;
|
||||||
virtual void SetBackgroundColor(const std::string& color_name);
|
virtual void SetBackgroundColor(const std::string& color_name);
|
||||||
std::string GetBackgroundColor(gin_helper::Arguments* args) const;
|
std::string GetBackgroundColor() const;
|
||||||
void InvalidateShadow();
|
void InvalidateShadow();
|
||||||
void SetHasShadow(bool has_shadow);
|
void SetHasShadow(bool has_shadow);
|
||||||
bool HasShadow() const;
|
bool HasShadow() const;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue