Update filenames in comments

Signed-off-by: Frediano Ziglio <freddy77@gmail.com>
This commit is contained in:
Frediano Ziglio 2020-05-06 20:15:13 +01:00
parent a21e66b7b3
commit 21f9d25aa8
3 changed files with 4 additions and 4 deletions

View File

@ -19,7 +19,7 @@
#define INPUTS_CHANNEL_H_
// Inputs channel, dealing with keyboard, mouse, tablet.
// This include should only be used by reds.c and inputs-channel.c
// This include should only be used by reds.cpp and inputs-channel.cpp
#include <stdint.h>
#include <spice/vd_agent.h>

View File

@ -170,7 +170,7 @@ void MainDispatcher::client_disconnect(RedClient *client)
/*
* FIXME:
* Reds routines shouldn't be exposed. Instead reds.c should register the callbacks,
* Reds routines shouldn't be exposed. Instead reds.cpp should register the callbacks,
* and the corresponding operations should be made only via main_dispatcher.
*/
MainDispatcher::MainDispatcher(RedsState *reds):

View File

@ -17,8 +17,8 @@
/* This header should contains internal details between RedQxl and
* RedWorker.
* Should be included only by red-worker.c, red-qxl.c and
* red-replay-qxl.c (which uses message values).
* Should be included only by red-worker.cpp, red-qxl.cpp and
* red-replay-qxl.cpp (which uses message values).
*/
#ifndef RED_WORKER_H_