Skip to content

Commit

Permalink
corrected for c++ void* pointer size
Browse files Browse the repository at this point in the history
  • Loading branch information
GChristensen committed Jun 17, 2024
1 parent 6d54b2f commit e2c2223
Show file tree
Hide file tree
Showing 10 changed files with 3 additions and 3 deletions.
Binary file modified enso/enso/platform/win32/AsyncEventProcessorRegistry.dll
Binary file not shown.
Binary file modified enso/enso/platform/win32/CLogging.dll
Binary file not shown.
Binary file modified enso/enso/platform/win32/Keyhook.dll
Binary file not shown.
Binary file modified enso/enso/platform/win32/cairo/_cairo.pyd
Binary file not shown.
Binary file modified enso/enso/platform/win32/graphics/_TransparentWindow.pyd
Binary file not shown.
Binary file modified enso/enso/platform/win32/input/_AsyncEventThread.pyd
Binary file not shown.
Binary file modified enso/enso/platform/win32/input/_InputManager.pyd
Binary file not shown.
Binary file modified enso/enso/platform/win32/selection/_ClipboardBackend.pyd
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -649,6 +649,6 @@ _getDesktopOffset( int *left,
*top = rectWorkArea.top;
}

int TransparentWindow::getHandle() {
return (int)_window;
long long TransparentWindow::getHandle() {
return (long long)_window;
}
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ class TransparentWindow
int
getMaxHeight( void );

int getHandle();
long long getHandle();

#ifndef SWIG
private:
Expand Down

0 comments on commit e2c2223

Please sign in to comment.