kio: undeprecate KIO::Connection class

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
Ivailo Monev 2021-07-28 00:41:06 +03:00
parent 4cacaea032
commit f08d4d6605
2 changed files with 1 additions and 13 deletions

View file

@ -324,10 +324,6 @@ protected:
};
#ifdef MAKE_KIO_LIB
KDE_DUMMY_QHASH_FUNCTION(KBookmark)
#endif
/**
* A group of bookmarks
*/

View file

@ -22,12 +22,6 @@
#ifndef KIO_CONNECTION_H
#define KIO_CONNECTION_H
#if defined(kio_EXPORTS) || defined(MAKE_KLAUNCHER)
# define KIO_CONNECTION_EXPORT KIO_EXPORT
#else
# define KIO_CONNECTION_EXPORT KIO_DEPRECATED_EXPORT
#endif
#include "kio_export.h"
#include <QtCore/QObject>
@ -44,7 +38,7 @@ namespace KIO {
* It handles a queue of commands to be sent which makes it possible to
* queue data before an actual connection has been established.
*/
class KIO_CONNECTION_EXPORT Connection : public QObject
class KIO_EXPORT Connection : public QObject
{
Q_OBJECT
public:
@ -184,6 +178,4 @@ namespace KIO {
}
#undef KIO_CONNECTION_EXPORT
#endif