diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-06-18 00:09:52 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-06-18 00:09:52 -0500 |
commit | d1096751ddb25cdef23919c17389fc268c31edaf (patch) | |
tree | b910be3588cb706defc00c31aefa850bb2312784 /tools/assistant/helpdialogimpl.cpp | |
parent | af8fdcf1ca7bdbda6f0c1afecd8c2d8ffa23bebb (diff) | |
parent | 6dec101d43dcbd4195c47d54bd388db1a8d7230e (diff) | |
download | tqt-d1096751ddb25cdef23919c17389fc268c31edaf.tar.gz tqt-d1096751ddb25cdef23919c17389fc268c31edaf.zip |
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tqt3
Diffstat (limited to 'tools/assistant/helpdialogimpl.cpp')
-rw-r--r-- | tools/assistant/helpdialogimpl.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/assistant/helpdialogimpl.cpp b/tools/assistant/helpdialogimpl.cpp index abce3ae84..00ab8cdc4 100644 --- a/tools/assistant/helpdialogimpl.cpp +++ b/tools/assistant/helpdialogimpl.cpp @@ -333,7 +333,7 @@ void HelpDialog::loadIndexFile() editIndex->setEnabled(FALSE); TQDataStream ds( &indexFile ); - Q_UINT32 fileAges; + TQ_UINT32 fileAges; ds >> fileAges; if ( fileAges != getFileAges() ) { indexFile.close(); @@ -376,12 +376,12 @@ void HelpDialog::loadIndexFile() editIndex->setEnabled(TRUE); } -Q_UINT32 HelpDialog::getFileAges() +TQ_UINT32 HelpDialog::getFileAges() { TQStringList addDocuFiles = Config::configuration()->docFiles(); TQStringList::const_iterator i = addDocuFiles.begin(); - Q_UINT32 fileAges = 0; + TQ_UINT32 fileAges = 0; for( ; i != addDocuFiles.end(); ++i ) { TQFileInfo fi( *i ); if ( fi.exists() ) @@ -406,7 +406,7 @@ void HelpDialog::buildKeywordDB() processEvents(); TQValueList<IndexKeyword> lst; - Q_UINT32 fileAges = 0; + TQ_UINT32 fileAges = 0; for( i = addDocuFiles.begin(); i != addDocuFiles.end(); i++ ){ TQFile file( *i ); if ( !file.exists() ) { @@ -497,7 +497,7 @@ void HelpDialog::getAllContents() } TQDataStream ds( &contentFile ); - Q_UINT32 fileAges; + TQ_UINT32 fileAges; ds >> fileAges; if ( fileAges != getFileAges() ) { contentFile.close(); @@ -520,7 +520,7 @@ void HelpDialog::buildContentDict() { TQStringList docuFiles = Config::configuration()->docFiles(); - Q_UINT32 fileAges = 0; + TQ_UINT32 fileAges = 0; for( TQStringList::iterator it = docuFiles.begin(); it != docuFiles.end(); it++ ) { TQFile file( *it ); if ( !file.exists() ) { |