Skip to content

Commit d36d183

Browse files
committed
window management
1 parent 11ca885 commit d36d183

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/controller/Display.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ namespace udd {
207207
showImage(image, p1, p2, rotation);
208208
}
209209

210-
void Display::showImage(Image &image, Point p1, Point p2, Rotation rotation) {
210+
void Display::showImage(Image& image, Point p1, Point p2, Rotation rotation) {
211211
int width, height;
212212
screenLock.lock();
213213
openSPI();

src/controller/Display.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,9 @@ namespace udd {
7575
virtual void clearScreen(Color color);
7676
virtual void clearWindow(Color color, Point p1, Point p2, Rotation rotation);
7777

78-
virtual void showImage(Image &image);
79-
virtual void showImage(Image &image, Rotation rotation);
80-
virtual void showImage(Image &image, Point p1, Point p2, Rotation rotation);
78+
virtual void showImage(Image& image);
79+
virtual void showImage(Image& image, Rotation rotation);
80+
virtual void showImage(Image& image, Point p1, Point p2, Rotation rotation);
8181

8282
virtual void readBusy() {
8383
fprintf(stderr, "readBusy() is not implemented for this method\n");

0 commit comments

Comments
 (0)