Fix Warnings for class 'RsIdentityDetails' was previously declared as a

struct

In file included from ../../../trunk/retroshare-gui/src/gui/
NetworkDialog.cpp:36:
../../../trunk/retroshare-gui/src/gui/msgs/MessageComposer.h:33:1:
warning: class 'RsIdentityDetails' was previously declared as a struct
[-Wmismatched-tags]
class RsIdentityDetails;
^
../../../trunk/libretroshare/src/retroshare/rsidentity.h:294:8: note:
previous use is here
struct RsIdentityDetails : RsSerializable
       ^
../../../trunk/retroshare-gui/src/gui/msgs/MessageComposer.h:33:1: note:
did you mean struct here?
class RsIdentityDetails;
^~~~~
struct
This commit is contained in:
Phenom 2019-02-14 23:09:09 +01:00
parent a25f974473
commit 0b9cd9743a

View File

@ -30,7 +30,7 @@
#include "gui/msgs/MessageInterface.h"
class QAction;
class RsIdentityDetails;
struct RsIdentityDetails;
class QComboBox;
class QFontComboBox;
class QTextEdit;