mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-07 16:45:11 -04:00
Fixed some more utf8 handling in the GUI.
Optimized creation of the RetroShare links for forum and channel messages. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4194 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
dd457e15c7
commit
0619463948
16 changed files with 73 additions and 48 deletions
|
@ -56,8 +56,8 @@ class RetroShareLink
|
|||
|
||||
bool createFile(const QString& name, uint64_t size, const QString& hash);
|
||||
bool createPerson(const QString& name, const QString& hash);
|
||||
bool createForum(const QString& name, const QString& id, const QString& msgId);
|
||||
bool createChannel(const QString& name, const QString& id, const QString& msgId);
|
||||
bool createForum(const std::string& id, const std::string& msgId);
|
||||
bool createChannel(const std::string& id, const std::string& msgId);
|
||||
bool createSearch(const QString& keywords);
|
||||
bool createMessage(const std::string& peerId, const QString& subject);
|
||||
|
||||
|
@ -99,7 +99,7 @@ class RetroShareLink
|
|||
void clear();
|
||||
void check();
|
||||
static bool checkHash(const QString& hash);
|
||||
static bool checkName(const QString& hash);
|
||||
static bool checkName(const QString& name);
|
||||
|
||||
bool _valid;
|
||||
enumType _type;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue