Skip to content

Commit

Permalink
Fix build with specific option combination.
Browse files Browse the repository at this point in the history
With some option combination the code to be compiled has not been updated with
regards to the changes in conky::rec, i.e get_height() becomes height() and
get_width() becomes width().
  • Loading branch information
fernape committed May 19, 2024
1 parent ccbac0a commit 88e5e5f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/x11-settings.cc
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ bool use_xpmdb_setting::set_up(lua::state &l) {
if (!out_to_x.get(l)) return false;

window.back_buffer =
XCreatePixmap(display, window.window, window.geometry.get_width() + 1, window.geometry.get_height() + 1,
XCreatePixmap(display, window.window, window.geometry.width() + 1, window.geometry.height() + 1,
DefaultDepth(display, screen));
if (window.back_buffer != None) {
window.drawable = window.back_buffer;
Expand Down
6 changes: 3 additions & 3 deletions src/x11.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1219,10 +1219,10 @@ void xdbe_swap_buffers() {
void xpmdb_swap_buffers(void) {
if (use_xpmdb.get(*state)) {
XCopyArea(display, window.back_buffer, window.window, window.gc, 0, 0,
window.geometry.get_width(), window.geometry.get_height(), 0, 0);
window.geometry.width(), window.geometry.height(), 0, 0);
XSetForeground(display, window.gc, 0);
XFillRectangle(display, window.drawable, window.gc, 0, 0, window.geometry.get_width(),
window.geometry.get_height());
XFillRectangle(display, window.drawable, window.gc, 0, 0, window.geometry.width(),
window.geometry.height());
XFlush(display);
}
}
Expand Down

0 comments on commit 88e5e5f

Please sign in to comment.