mohabouje / WinToast

WinToast is a lightly library written in C++ which brings a complete integration of the modern toast notifications of Windows 8 & Windows 10. Toast notifications allows your app to inform the users about relevant information and timely events that they should see and take action upon inside your app, such as a new instant message, a new friend request, breaking news, or a calendar event.
MIT License
704 stars 130 forks source link

WinToast::initialize() always returns false #24

Closed sraboy closed 6 years ago

sraboy commented 6 years ago

I imagine this line is supposed to be return true; at this point, right?

mohabouje commented 6 years ago

I was a little bit busy this week and I did not have time to check the problem with the initialize function! Thank you man!

mohabouje commented 6 years ago

The function is suppose to return the state of the _isInitialized variable, see the quick fix: https://github.com/mohabouje/WinToast/commit/6b5c0c64c87ce9376118fd390fd2e3a1f339b29b

sraboy commented 6 years ago

Thanks!