diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-06-17 17:28:28 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-06-17 17:28:28 -0500 |
commit | 6dec101d43dcbd4195c47d54bd388db1a8d7230e (patch) | |
tree | 7c336cbed3a93807a34cd4df39b2f92a7d48a141 /tools/assistant/helpdialogimpl.cpp | |
parent | f27c2533f735d53c6b555f387c6390c0690cc246 (diff) | |
download | tqt3-6dec101d43dcbd4195c47d54bd388db1a8d7230e.tar.gz tqt3-6dec101d43dcbd4195c47d54bd388db1a8d7230e.zip |
Automated update from Qt3
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() ) { |