mirror of
https://github.com/glfw/glfw.git
synced 2024-11-22 18:15:10 +00:00
Nomenclature fix.
This commit is contained in:
parent
bbc12ade7f
commit
7911c9300d
@ -108,9 +108,9 @@ static int translateChar(XKeyEvent* event)
|
||||
return (int) _glfwKeySym2Unicode(keysym);
|
||||
}
|
||||
|
||||
// Splits a text/uri-list into separate file paths
|
||||
// Splits and translates a text/uri-list into separate file paths
|
||||
//
|
||||
static char** splitUriList(char* text, int* count)
|
||||
static char** parseUriList(char* text, int* count)
|
||||
{
|
||||
const char* prefix = "file://";
|
||||
char** names = NULL;
|
||||
@ -868,7 +868,7 @@ static void processEvent(XEvent *event)
|
||||
if (result)
|
||||
{
|
||||
int i, count;
|
||||
char** names = splitUriList(data, &count);
|
||||
char** names = parseUriList(data, &count);
|
||||
|
||||
_glfwInputDrop(window, count, (const char**) names);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user