[STYLE] remove (void) in () to be c++ coherent

This commit is contained in:
2014-05-15 21:37:39 +02:00
parent 28982a1bbd
commit 18c2370065
39 changed files with 107 additions and 107 deletions

View File

@@ -24,7 +24,7 @@
static const char* const g_eventPlay1 = "appl-play-1";
static const char* const g_eventPlay2 = "appl-play-2";
appl::Windows::Windows(void) :
appl::Windows::Windows() :
m_composer(NULL) {
setTitle("example 001_HelloWord");
std::string composition = std::string("");

View File

@@ -17,7 +17,7 @@ namespace appl {
private:
ewol::widget::Composer* m_composer;
public:
Windows(void);
Windows();
public: // herited functions
virtual void onObjectRemove(ewol::Object * _removeObject);
virtual void onReceiveMessage(const ewol::object::Message& _msg);

View File

@@ -9,7 +9,7 @@
#include <test/debug.h>
int32_t appl::getLogId(void) {
int32_t appl::getLogId() {
static int32_t g_val = etk::log::registerInstance("ea-fx TT");
return g_val;
}

View File

@@ -12,7 +12,7 @@
#include <etk/log.h>
namespace appl {
int32_t getLogId(void);
int32_t getLogId();
};
// TODO : Review this problem of multiple intanciation of "std::stringbuf sb"
#define APPL_BASE(info,data) \