commit 9509429cd9822a9920e361ddd4febed3ad03e90a
parent 1d92a6de1de1910df11344068cb910eb888f5df2
Author: cfillion <cfillion@users.noreply.github.com>
Date: Sun, 17 Apr 2016 02:22:12 -0400
(still trying to break the habit of using 0 instead of nullptr...)
Diffstat:
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/index.hpp b/src/index.hpp
@@ -47,7 +47,7 @@ public:
static Path pathFor(const std::string &name);
static LinkType linkTypeFor(const char *rel);
- static IndexPtr load(const std::string &name, const char *data = 0);
+ static IndexPtr load(const std::string &name, const char *data = nullptr);
static Download *fetch(const Remote &, bool stale = false);
Index(const std::string &name);
diff --git a/src/menu.hpp b/src/menu.hpp
@@ -28,7 +28,7 @@
class Menu {
public:
- Menu(HMENU handle = 0);
+ Menu(HMENU handle = nullptr);
~Menu();
UINT size() { return m_size; }
diff --git a/src/reapack.hpp b/src/reapack.hpp
@@ -70,7 +70,7 @@ public:
void uninstall(const Remote &);
void uninstall(const Registry::Entry &);
void importRemote();
- void import(const Remote &, HWND = 0);
+ void import(const Remote &, HWND = nullptr);
void manageRemotes();
void aboutSelf();
void about(const std::string &, HWND parent);