summaryrefslogtreecommitdiff
path: root/protocols/FacebookRM/src/entities.h
diff options
context:
space:
mode:
authorRobert Pösel <robyer@seznam.cz>2013-04-10 07:17:34 +0000
committerRobert Pösel <robyer@seznam.cz>2013-04-10 07:17:34 +0000
commit567faf65895cc362a714fc60508fb676863031af (patch)
tree39ae3caef87285d8c66777a809181de96bf6f83b /protocols/FacebookRM/src/entities.h
parent2db0f15d4e99fc869402268195fdf63d6131b34f (diff)
Removed spaces around brackets
git-svn-id: http://svn.miranda-ng.org/main/trunk@4406 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/FacebookRM/src/entities.h')
-rw-r--r--protocols/FacebookRM/src/entities.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/protocols/FacebookRM/src/entities.h b/protocols/FacebookRM/src/entities.h
index 32404ca723..0f9058c42d 100644
--- a/protocols/FacebookRM/src/entities.h
+++ b/protocols/FacebookRM/src/entities.h
@@ -36,7 +36,7 @@ struct facebook_user
bool deleted;
- facebook_user( )
+ facebook_user()
{
this->handle = NULL;
this->user_id = this->real_name = this->image_url = "";
@@ -45,7 +45,7 @@ struct facebook_user
this->deleted = false;
}
- facebook_user( facebook_user* fu )
+ facebook_user(facebook_user* fu)
{
this->handle = fu->handle;
this->image_url = fu->image_url;
@@ -64,13 +64,13 @@ struct facebook_message
std::string sender_name;
DWORD time;
- facebook_message( )
+ facebook_message()
{
this->user_id = this->message_text = this->sender_name = "";
this->time = 0;
}
- facebook_message( const facebook_message& msg )
+ facebook_message(const facebook_message& msg)
{
this->user_id = msg.user_id;
this->message_text = msg.message_text;
@@ -85,7 +85,7 @@ struct facebook_notification
std::string text;
std::string link;
- facebook_notification( )
+ facebook_notification()
{
this->user_id = this->text = this->link = "";
}
@@ -98,7 +98,7 @@ struct facebook_newsfeed
std::string text;
std::string link;
- facebook_newsfeed( )
+ facebook_newsfeed()
{
this->user_id = this->title = this->text = this->link = "";
}