1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-17 10:52:46 +00:00

Const strings for plNetSharedState.

This commit is contained in:
Darryl Pogue
2011-08-06 14:20:01 -07:00
parent 517c195568
commit db3347734a
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "plGenericVar.h"
#include "pnMessage/plMessage.h"
plNetSharedState::plNetSharedState(char* name) : fServerMayDelete(false)
plNetSharedState::plNetSharedState(const char* name) : fServerMayDelete(false)
{
SetName(name);
}

View File

@ -44,7 +44,7 @@ protected:
bool fServerMayDelete; // ok to delete (don't save) since this state is equivalent to the default state
public:
plNetSharedState(char* name=nil);
plNetSharedState(const char* name=nil);
virtual ~plNetSharedState();
virtual void Copy(plNetSharedState* ss);