diff options
Diffstat (limited to 'plugingui')
| -rw-r--r-- | plugingui/directory.cc | 2 | ||||
| -rw-r--r-- | plugingui/listboxbasic.cc | 4 | 
2 files changed, 3 insertions, 3 deletions
| diff --git a/plugingui/directory.cc b/plugingui/directory.cc index 80eef3f..c7a17b2 100644 --- a/plugingui/directory.cc +++ b/plugingui/directory.cc @@ -159,7 +159,7 @@ Directory::EntryList Directory::listFiles(std::string path, unsigned char filter  	std::vector<std::string> files;  	struct dirent *entry; -	while((entry = readdir(dir)) != NULL) +	while((entry = readdir(dir)) != nullptr)  	{  		std::string name = entry->d_name;  		if(name == ".") diff --git a/plugingui/listboxbasic.cc b/plugingui/listboxbasic.cc index d1002b6..10d6c66 100644 --- a/plugingui/listboxbasic.cc +++ b/plugingui/listboxbasic.cc @@ -141,7 +141,7 @@ void ListBoxBasic::clearSelectedValue()  void ListBoxBasic::onScrollBarValueChange(int value)  { -	repaintEvent(NULL); +	repaintEvent(nullptr);  }  void ListBoxBasic::repaintEvent(RepaintEvent* repaintEvent) @@ -153,7 +153,7 @@ void ListBoxBasic::repaintEvent(RepaintEvent* repaintEvent)  	int w = width();  	int h = height(); -	if(w == 0 || h == 0) +	if((w == 0) || (h == 0))  	{  		return;  	} | 
