Skip to content

Commit

Permalink
Rename module name to zmque
Browse files Browse the repository at this point in the history
  • Loading branch information
yosagi committed Jun 3, 2019
1 parent e95aa24 commit ac2c876
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
void FZmqModule::StartupModule()
{
// Get the base directory of this plugin
FString BaseDir = IPluginManager::Get().FindPlugin("zmq")->GetBaseDir();
FString BaseDir = IPluginManager::Get().FindPlugin("zmque")->GetBaseDir();

// Add on the relative location of the third party dll and load it
FString LibraryPath;
Expand Down Expand Up @@ -41,4 +41,4 @@ void FZmqModule::ShutdownModule()

#undef LOCTEXT_NAMESPACE

IMPLEMENT_MODULE(FZmqModule, zmqmod)
IMPLEMENT_MODULE(FZmqModule, zmque)
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,6 @@ namespace zmq
class context_t
{
friend class socket_t;
bool valid = false;
public:
inline bool isValid() { return valid; }
inline context_t ()
Expand Down Expand Up @@ -498,6 +497,7 @@ namespace zmq
private:

void *ptr;
bool valid = false;

context_t (const context_t&) ZMQ_DELETED_FUNCTION;
void operator = (const context_t&) ZMQ_DELETED_FUNCTION;
Expand Down Expand Up @@ -529,7 +529,6 @@ namespace zmq
{
friend class monitor_t;
friend class poller_t;
bool valid = false;
public:
inline bool isValid() { return valid; }
inline socket_t(context_t& context_, int type_)
Expand Down Expand Up @@ -731,6 +730,7 @@ namespace zmq

void *ptr;
void *ctxptr;
bool valid = false;

socket_t (const socket_t&) ZMQ_DELETED_FUNCTION;
void operator = (const socket_t&) ZMQ_DELETED_FUNCTION;
Expand Down
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions Source/zmq/zmq.Build.cs → Source/zmque/zmque.Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

using UnrealBuildTool;

public class zmq : ModuleRules
public class zmque : ModuleRules
{
public zmq(ReadOnlyTargetRules Target) : base(Target)
public zmque(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;

Expand Down
6 changes: 3 additions & 3 deletions zmq.uplugin → zmque.uplugin
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"FileVersion": 3,
"Version": 1,
"VersionName": "1.0",
"FriendlyName": "zmq",
"FriendlyName": "zmque",
"Description": "",
"Category": "Other",
"CreatedBy": "",
Expand All @@ -15,8 +15,8 @@
"Installed": false,
"Modules": [
{
"Name": "zmq",
"Type": "Developer",
"Name": "zmque",
"Type": "Runtime",
"LoadingPhase": "Default"
}
]
Expand Down

0 comments on commit ac2c876

Please sign in to comment.