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

This commit is contained in:
2014-05-15 21:37:39 +02:00
parent f1543f6199
commit 2d8c5d588d
60 changed files with 314 additions and 314 deletions

View File

@@ -27,17 +27,17 @@ class Search : public ewol::widget::Composer {
std::u32string m_replaceData;
public:
// Constructeur
Search(void);
~Search(void);
Search();
~Search();
private:
/**
* @brief Find the next element that corespond at the search
*/
void find(void);
void find();
/**
* @brief Replace the current selected text.
*/
void replace(void);
void replace();
public: // derived function
virtual void onReceiveMessage(const ewol::object::Message& _msg);
virtual void onObjectRemove(ewol::Object * _removeObject);