summaryrefslogtreecommitdiffstats
path: root/src/modules/sharedfile
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-28 18:31:12 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-28 18:31:12 +0000
commit0a80cfd57d271dd44221467efb426675fa470356 (patch)
tree6f503a31aa078eaf8fa015cf1749808529d49fc9 /src/modules/sharedfile
parent3329e5a804e28ef3f5eb51d1e7affdd5a508e8f2 (diff)
downloadkvirc-0a80cfd57d271dd44221467efb426675fa470356.tar.gz
kvirc-0a80cfd57d271dd44221467efb426675fa470356.zip
TQt4 port kvirc
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kvirc@1238719 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/modules/sharedfile')
-rw-r--r--src/modules/sharedfile/libkvisharedfile.cpp36
1 files changed, 18 insertions, 18 deletions
diff --git a/src/modules/sharedfile/libkvisharedfile.cpp b/src/modules/sharedfile/libkvisharedfile.cpp
index 93959f7..adbf7af 100644
--- a/src/modules/sharedfile/libkvisharedfile.cpp
+++ b/src/modules/sharedfile/libkvisharedfile.cpp
@@ -52,7 +52,7 @@ extern KVIRC_API KviSharedFilesManager * g_pSharedFilesManager;
@short:
Adds a file sharedfile
@syntax:
- sharedfile.add [-t=<timeout:integer>] [-n=<visible name>] <filename> [user_mask]
+ sharedfile.add [-t=<timeout:integer>] [-n=<visible name>] <filename> [user_tqmask]
@switches:
!sw: -t=<timeout> | --timeout=<timeout>
Specified the timeout after that the share will be automatically removed
@@ -61,8 +61,8 @@ extern KVIRC_API KviSharedFilesManager * g_pSharedFilesManager;
@description:
Adds <filename> to the list of the active shared files.
The users will be able to request the file via [cmd]dcc.get[/cmd].
- If [user_mask] is specified , the access to the file is limited
- to the users that match this mask, otherwise the mask will
+ If [user_tqmask] is specified , the access to the file is limited
+ to the users that match this tqmask, otherwise the tqmask will
be automatically set to '*!*@*'.[br]
If the 't' switch is used, the sharedfile will be removed after
<timeout> seconds. If the 'n' switch is used, the sharedfile
@@ -76,10 +76,10 @@ extern KVIRC_API KviSharedFilesManager * g_pSharedFilesManager;
static bool sharedfile_kvs_cmd_add(KviKvsModuleCommandCall * c)
{
- QString szFileName,szUserMask;
+ TQString szFileName,szUserMask;
KVSM_PARAMETERS_BEGIN(c)
KVSM_PARAMETER("filename",KVS_PT_NONEMPTYSTRING,0,szFileName)
- KVSM_PARAMETER("user_mask",KVS_PT_NONEMPTYSTRING,KVS_PF_OPTIONAL,szUserMask)
+ KVSM_PARAMETER("user_tqmask",KVS_PT_NONEMPTYSTRING,KVS_PF_OPTIONAL,szUserMask)
KVSM_PARAMETERS_END(c)
if(!KviFileUtils::isReadable(szFileName))
@@ -91,12 +91,12 @@ static bool sharedfile_kvs_cmd_add(KviKvsModuleCommandCall * c)
if(szUserMask.isEmpty())szUserMask="*!*@*";
KviIrcMask u(szUserMask);
- QString szm;
- u.mask(szm);
+ TQString szm;
+ u.tqmask(szm);
kvs_int_t timeout = 0;
- if(KviKvsVariant * v = c->switches()->find('t',"timeout"))
+ if(KviKvsVariant * v = c->switches()->tqfind('t',"timeout"))
{
if(!v->asInteger(timeout))
{
@@ -105,12 +105,12 @@ static bool sharedfile_kvs_cmd_add(KviKvsModuleCommandCall * c)
}
}
- QString szVisibleName = szFileName;
- KviQString::cutToLast(szVisibleName,'/');
+ TQString szVisibleName = szFileName;
+ KviTQString::cutToLast(szVisibleName,'/');
- if(KviKvsVariant * n = c->switches()->find('n',"name"))
+ if(KviKvsVariant * n = c->switches()->tqfind('n',"name"))
{
- QString tmp;
+ TQString tmp;
n->asString(tmp);
if(tmp.isEmpty())
{
@@ -138,9 +138,9 @@ static bool sharedfile_kvs_cmd_add(KviKvsModuleCommandCall * c)
@short:
Removes a shared file
@syntax:
- sharedfile.remove <visible name:string> <user mask:string> [filesize:integer]
+ sharedfile.remove <visible name:string> <user tqmask:string> [filesize:integer]
@description:
- Removes the shared file that matches <visible name> and <user mask>.
+ Removes the shared file that matches <visible name> and <user tqmask>.
If [filesize] is specified, then it must be matched by the entry
to be removed.
@seealso:
@@ -149,16 +149,16 @@ static bool sharedfile_kvs_cmd_add(KviKvsModuleCommandCall * c)
static bool sharedfile_kvs_cmd_remove(KviKvsModuleCommandCall * c)
{
- QString szVisibleName,szUserMask;
+ TQString szVisibleName,szUserMask;
kvs_uint_t uSize;
KVSM_PARAMETERS_BEGIN(c)
KVSM_PARAMETER("visible_name",KVS_PT_NONEMPTYSTRING,0,szVisibleName)
- KVSM_PARAMETER("user_mask",KVS_PT_NONEMPTYSTRING,0,szUserMask)
+ KVSM_PARAMETER("user_tqmask",KVS_PT_NONEMPTYSTRING,0,szUserMask)
KVSM_PARAMETER("filesize",KVS_PT_UINT,KVS_PF_OPTIONAL,uSize)
KVSM_PARAMETERS_END(c)
if(!g_pSharedFilesManager->removeSharedFile(szVisibleName,szUserMask,uSize))
- c->warning(__tr2qs_ctx("No sharedfile with visible name '%Q' and user mask '%Q'","sharedfile"),&szVisibleName,&szUserMask);
+ c->warning(__tr2qs_ctx("No sharedfile with visible name '%Q' and user tqmask '%Q'","sharedfile"),&szVisibleName,&szUserMask);
return true;
}
@@ -210,7 +210,7 @@ static bool sharedfile_kvs_cmd_clear(KviKvsModuleCommandCall * c)
static bool sharedfile_kvs_cmd_list(KviKvsModuleCommandCall * c)
{
- KviPointerHashTableIterator<QString,KviSharedFileList> it(*(g_pSharedFilesManager->sharedFileListDict()));
+ KviPointerHashTableIterator<TQString,KviSharedFileList> it(*(g_pSharedFilesManager->sharedFileListDict()));
int idx = 0;