Changeset 275:03f6a96b28f2
- Timestamp:
- 06/11/2008 08:36:06 PM (4 years ago)
- Author:
- Dmitry Nezhevenko <dion@…>
- Branch:
- default
- Message:
-
Make it compatible with gcc 4.3
- Location:
- src
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r267
|
r275
|
|
| 30 | 30 | class GluxiBot; |
| 31 | 31 | |
| 32 | | class gloox::Stanza; |
| 33 | | |
| 34 | 32 | class DiscoHandler |
| 35 | 33 | { |
-
|
r271
|
r275
|
|
| 17 | 17 | #include "gloox/myvcardmanager.h" |
| 18 | 18 | |
| 19 | | class gloox::Client; |
| 20 | | class gloox::Stanza; |
| 21 | 19 | class MyStanza; |
| 22 | 20 | |
-
|
r268
|
r275
|
|
| 22 | 22 | class AbstractConfigurator; |
| 23 | 23 | class RootDiscoHandler; |
| 24 | | |
| 25 | | class gloox::Client; |
| 26 | | class gloox::Stanza; |
| 27 | 24 | |
| 28 | 25 | class QuitEvent: public QEvent |
-
|
r252
|
r275
|
|
| 12 | 12 | #include <signal.h> |
| 13 | 13 | #endif |
| | 14 | |
| | 15 | #include <stdlib.h> |
| 14 | 16 | |
| 15 | 17 | GluxiBot *bot; |
-
|
r274
|
r275
|
|
| 64 | 64 | int getStatus(gloox::Stanza* s); |
| 65 | 65 | bool warnImOwner(gloox::Stanza* s); |
| 66 | | QString expandMacro(gloox::Stanza* s, Conference*c, Nick* n, const QString& s, const AListItem* item=0); |
| | 66 | QString expandMacro(gloox::Stanza* s, Conference*c, Nick* n, const QString& str, const AListItem* item=0); |
| 67 | 67 | void requestVCard(gloox::Stanza* s, Conference* conf, Nick* nick); |
| 68 | 68 | private slots: |
-
|
r80
|
r275
|
|
| 20 | 20 | #include <stdio.h> |
| 21 | 21 | #include <string.h> |
| | 22 | #include <stdlib.h> |
| 22 | 23 | |
| 23 | 24 | #ifndef __WIN32__ |
-
|
r80
|
r275
|
|
| 56 | 56 | } |
| 57 | 57 | |
| 58 | | X509* BuildCertificate(char *name, char *organization, char *country, EVP_PKEY *key) |
| | 58 | X509* BuildCertificate(const char *name, char *organization, char *country, EVP_PKEY *key) |
| 59 | 59 | { |
| 60 | 60 | if( !name ) |