Style fixes
* Use under_score for variable names in C++ * Use const& when possible * Line length <= 80
This commit is contained in:
parent
ea1b89c699
commit
df35700b94
5 changed files with 50 additions and 36 deletions
|
@ -249,8 +249,8 @@ bool Window::IsFullscreen() {
|
|||
return window_->IsFullscreen();
|
||||
}
|
||||
|
||||
void Window::SetAspectRatio(double aspectRatio, gfx::Size extraSize) {
|
||||
window_->SetAspectRatio(aspectRatio, extraSize);
|
||||
void Window::SetAspectRatio(double aspect_ratio, const gfx::Size& extraSize) {
|
||||
window_->SetAspectRatio(aspect_ratio, extraSize);
|
||||
}
|
||||
|
||||
void Window::SetBounds(const gfx::Rect& bounds) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue