Skip to content

Commit

Permalink
Fix [de83677067]: Compile error (undeclared identifier) in generic/tk…
Browse files Browse the repository at this point in the history
…Frame.c
  • Loading branch information
jan.nijtmans committed Aug 26, 2024
1 parent ced4888 commit f2e3656
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions generic/tkFrame.c
Original file line number Diff line number Diff line change
Expand Up @@ -1715,10 +1715,10 @@ DisplayFrame(
*/

XCopyArea(framePtr->display, pixmap, Tk_WindowId(tkwin),
framePtr->copyGC, hlWidth, hlWidth,
(unsigned) (Tk_Width(tkwin) - 2 * hlWidth),
(unsigned) (Tk_Height(tkwin) - 2 * hlWidth),
hlWidth, hlWidth);
framePtr->copyGC, highlightWidth, highlightWidth,
(unsigned) (Tk_Width(tkwin) - 2 * highlightWidth),
(unsigned) (Tk_Height(tkwin) - 2 * highlightWidth),
highlightWidth, highlightWidth);
Tk_FreePixmap(framePtr->display, pixmap);
#endif /* TK_NO_DOUBLE_BUFFERING */
}
Expand Down

0 comments on commit f2e3656

Please sign in to comment.