View | Details | Raw Unified | Return to bug 5943
Collapse All | Expand All

(-)sim-0.9.3/plugins/_core/cfgdlg.cpp (-1 / +1 lines)
Lines 279-285 Link Here
279
    return new MainInfo(dlg, NULL);
279
    return new MainInfo(dlg, NULL);
280
}
280
}
281
281
282
};
282
}
283
283
284
using namespace ConfigDlg;
284
using namespace ConfigDlg;
285
285
(-)sim-0.9.3/plugins/_core/statuswnd.cpp (-1 / +1 lines)
Lines 115-121 Link Here
115
    QToolTip::add(this, tip);
115
    QToolTip::add(this, tip);
116
    resize(pict.width(), pict.height());
116
    resize(pict.width(), pict.height());
117
    setFixedSize(pict.width(), pict.height());
117
    setFixedSize(pict.width(), pict.height());
118
};
118
}
119
119
120
void StatusLabel::timeout()
120
void StatusLabel::timeout()
121
{
121
{
(-)sim-0.9.3/plugins/yahoo/yahooauth.cpp (-1 / +1 lines)
Lines 52-58 Link Here
52
{
52
{
53
    char *yahoo_crypt(const char *key, const char *salt);
53
    char *yahoo_crypt(const char *key, const char *salt);
54
    int yahoo_Dispatch(int Salt, int Parameter);
54
    int yahoo_Dispatch(int Salt, int Parameter);
55
};
55
}
56
56
57
/* This is the y64 alphabet... it's like base64, but has a . and a _ */
57
/* This is the y64 alphabet... it's like base64, but has a . and a _ */
58
char base64digits[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789._";
58
char base64digits[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789._";
(-)sim-0.9.3/sim/api/cfg.cpp (-1 / +1 lines)
Lines 1092-1095 Link Here
1092
    return strcmp(s1, s2) != 0;
1092
    return strcmp(s1, s2) != 0;
1093
}
1093
}
1094
1094
1095
};
1095
}
(-)sim-0.9.3/sim/api/cmddef.cpp (-1 / +1 lines)
Lines 424-429 Link Here
424
    return res;
424
    return res;
425
}
425
}
426
426
427
};
427
}
428
428
429
429
(-)sim-0.9.3/sim/api/contacts.cpp (-1 / +1 lines)
Lines 1952-1958 Link Here
1952
    return PluginManager::contacts;
1952
    return PluginManager::contacts;
1953
}
1953
}
1954
1954
1955
};
1955
}
1956
1956
1957
EXPORT QString g_i18n(const char *text, Contact *contact)
1957
EXPORT QString g_i18n(const char *text, Contact *contact)
1958
{
1958
{
(-)sim-0.9.3/sim/api/country.cpp (-1 / +1 lines)
Lines 539-542 Link Here
539
}
539
}
540
540
541
541
542
};
542
}
(-)sim-0.9.3/sim/api/html.h (-1 / +1 lines)
Lines 46-51 Link Here
46
    friend class HTMLParserPrivate;
46
    friend class HTMLParserPrivate;
47
};
47
};
48
48
49
};
49
}
50
50
51
#endif
51
#endif
(-)sim-0.9.3/sim/api/html.ll (-1 / +1 lines)
Lines 347-353 Link Here
347
	return res;
347
	return res;
348
}
348
}
349
349
350
};
350
}
351
351
352
int yywrap() { return 1; }
352
int yywrap() { return 1; }
353
353
(-)sim-0.9.3/sim/api/log.cpp (-1 / +1 lines)
Lines 143-146 Link Here
143
    return m;
143
    return m;
144
}
144
}
145
145
146
};
146
}
(-)sim-0.9.3/sim/api/message.cpp (-1 / +1 lines)
Lines 645-649 Link Here
645
    return "";
645
    return "";
646
}
646
}
647
647
648
};
648
}
649
649
(-)sim-0.9.3/sim/api/plugins.cpp (-1 / +1 lines)
Lines 792-795 Link Here
792
ContactList *PluginManager::contacts = NULL;
792
ContactList *PluginManager::contacts = NULL;
793
SocketFactory *PluginManager::factory = NULL;
793
SocketFactory *PluginManager::factory = NULL;
794
794
795
};
795
}
(-)sim-0.9.3/sim/api/simapi.cpp (-1 / +1 lines)
Lines 963-969 Link Here
963
    return strcmp(m_str->c_str(), a.m_str->c_str()) < 0;
963
    return strcmp(m_str->c_str(), a.m_str->c_str()) < 0;
964
}
964
}
965
965
966
};
966
}
967
967
968
#ifndef HAVE_STRCASECMP
968
#ifndef HAVE_STRCASECMP
969
969
(-)sim-0.9.3/sim/api/simapi.h (-1 / +1 lines)
Lines 1803-1809 Link Here
1803
EXPORT bool logEnabled();
1803
EXPORT bool logEnabled();
1804
EXPORT void setLogEnable(bool);
1804
EXPORT void setLogEnable(bool);
1805
1805
1806
};
1806
}
1807
1807
1808
using namespace SIM;
1808
using namespace SIM;
1809
1809
(-)sim-0.9.3/sim/api/socket.cpp (-1 / +1 lines)
Lines 464-470 Link Here
464
464
465
#endif
465
#endif
466
466
467
};
467
}
468
468
469
#ifndef WIN32
469
#ifndef WIN32
470
#include "socket.moc"
470
#include "socket.moc"
(-)sim-0.9.3/sim/api/socket.h (-1 / +1 lines)
Lines 256-261 Link Here
256
256
257
#endif
257
#endif
258
258
259
};
259
}
260
260
261
#endif
261
#endif
(-)sim-0.9.3/sim/api/sockfactory.cpp (-1 / +1 lines)
Lines 640-646 Link Here
640
#endif
640
#endif
641
}
641
}
642
642
643
};
643
}
644
644
645
#ifndef WIN32
645
#ifndef WIN32
646
#include "sockfactory.moc"
646
#include "sockfactory.moc"
(-)sim-0.9.3/sim/api/sockfactory.h (-1 / +1 lines)
Lines 152-158 Link Here
152
    QDns *resolver;
152
    QDns *resolver;
153
};
153
};
154
154
155
};
155
}
156
156
157
#endif
157
#endif
158
158
(-)sim-0.9.3/sim/api/translit.cpp (-1 / +1 lines)
Lines 75-78 Link Here
75
    return res;
75
    return res;
76
}
76
}
77
77
78
};
78
}
(-)sim-0.9.3/sim/sim.cpp (-1 / +1 lines)
Lines 287-293 Link Here
287
    CloseHandle(hMutex);
287
    CloseHandle(hMutex);
288
#endif
288
#endif
289
    return res;
289
    return res;
290
};
290
}
291
291
292
292
293
293

Return to bug 5943