Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Rishel <nicholas_rishel>2021-07-05 20:10:20 +0300
committerNicholas Rishel <rishel.nick@gmail.com>2021-07-05 20:10:20 +0300
commita5ab9062cbfecc220e232f315784fbb386c33f77 (patch)
treeb12a20bcb4ac1d1da528c889c09f1abc26ea68fc /intern/ghost/intern/GHOST_EventDragnDrop.h
parentb73dc36859e03845f702a3e985b536ac9afef63a (diff)
Replace Ghost integral types with standard fixed width integers.fixed_width_integers
Also replace integer with bool in Ghost API when only used as boolean, and replace uint8* with char* in Ghost API when variable is a string. Reviewed By: brecht Differential Revision: https://developer.blender.org/D11617
Diffstat (limited to 'intern/ghost/intern/GHOST_EventDragnDrop.h')
-rw-r--r--intern/ghost/intern/GHOST_EventDragnDrop.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/ghost/intern/GHOST_EventDragnDrop.h b/intern/ghost/intern/GHOST_EventDragnDrop.h
index a86b8302bf5..537717b1717 100644
--- a/intern/ghost/intern/GHOST_EventDragnDrop.h
+++ b/intern/ghost/intern/GHOST_EventDragnDrop.h
@@ -72,7 +72,7 @@ class GHOST_EventDragnDrop : public GHOST_Event {
* \param y: The y-coordinate of the location the cursor was at the time of the event.
* \param data: The "content" dropped in the window.
*/
- GHOST_EventDragnDrop(GHOST_TUns64 time,
+ GHOST_EventDragnDrop(uint64_t time,
GHOST_TEventType type,
GHOST_TDragnDropTypes dataType,
GHOST_IWindow *window,