summaryrefslogtreecommitdiff
path: root/plugins/SmileyAdd/src/smileys.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/SmileyAdd/src/smileys.h')
-rw-r--r--plugins/SmileyAdd/src/smileys.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/SmileyAdd/src/smileys.h b/plugins/SmileyAdd/src/smileys.h
index 8b3d4b7add..ad0eb059bc 100644
--- a/plugins/SmileyAdd/src/smileys.h
+++ b/plugins/SmileyAdd/src/smileys.h
@@ -102,8 +102,7 @@ template<class T> struct SMOBJLIST : public OBJLIST<T>
SMOBJLIST<T>& operator += (const SMOBJLIST<T>& lst)
{
- for (int i=0; i<lst.getCount(); ++i)
- {
+ for (int i=0; i < lst.getCount(); i++) {
T *p = new T(lst[i]);
insert(p);
}
@@ -112,7 +111,7 @@ template<class T> struct SMOBJLIST : public OBJLIST<T>
void splice(SMOBJLIST<T>& lst)
{
- for (int i=0; i<lst.getCount(); ++i)
+ for (int i=0; i < lst.getCount(); i++)
insert(&lst[i]);
lst.LIST<T>::destroy();
}