Skip to content

Commit

Permalink
Fix incorrect member function definitions.
Browse files Browse the repository at this point in the history
I forgot the class prefix.
  • Loading branch information
BartVandewoestyne committed Feb 12, 2024
1 parent a0fe790 commit 8b7e1d1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Structural_Patterns/Bridge/Window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@
// TODO
}

void SetOrigin(const Point& at) {
void Window::SetOrigin(const Point& at) {
// TODO
}

void SetExtent(const Point& extent) {
void Window::SetExtent(const Point& extent) {
// TODO
}

void Raise() {
void Window::Raise() {
// TODO
}

void Lower() {
void Window::Lower() {
// TODO
}

Expand Down

0 comments on commit 8b7e1d1

Please sign in to comment.