Drop USE_TQT4 code

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/23/head
Michele Calgaro 8 months ago
parent 9f59252f1b
commit 232924ecce
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -537,13 +537,9 @@ void SearchBarPlugin::updateComboVisibility()
void SearchBarPlugin::focusSearchbar()
{
#ifdef USE_QT4
m_searchCombo->setFocus();
#else // USE_QT4
TQFocusEvent::setReason( TQFocusEvent::Shortcut );
m_searchCombo->setFocus();
TQFocusEvent::resetReason();
#endif // USE_QT4
}
SearchBarCombo::SearchBarCombo(TQWidget *parent, const char *name) :

@ -33,11 +33,7 @@ void TDEBuffer::flush(){
}
/** query buffer size */
#ifdef USE_QT4
qint64 TDEBuffer::size() const {
#else // USE_QT4
TQ_ULONG TDEBuffer::size() const {
#endif // USE_QT4
return buf.size();
}

@ -23,11 +23,7 @@ public:
/** read in a block of memory */
TQ_LONG readBlock(char* data, long unsigned int maxLen);
/** query buffer size */
#ifdef USE_QT4
qint64 size() const;
#else // USE_QT4
TQ_ULONG size() const;
#endif // USE_QT4
/** No descriptions */
void flush();
/** Close buffer */
@ -45,11 +41,6 @@ public:
return &buf[0];
}
#ifdef USE_QT4
virtual inline qint64 readData ( char * data, qint64 maxSize ) { return readBlock(data, maxSize); }
virtual inline qint64 writeData ( const char * data, qint64 maxSize ) { return writeBlock(data, maxSize); }
#endif // USE_QT4
private:
std::vector<char> buf;
std::vector<char>::iterator bufPos;

Loading…
Cancel
Save