Revert "Qt5: added QPixmapCache_clear(). part of issue #38844"

This reverts commit ed5a249484.
This commit is contained in:
Maxim Ganetsky 2022-03-03 15:53:39 +03:00
parent 22c99fe134
commit 9c8ed5dcb9
3 changed files with 0 additions and 38 deletions

View File

@ -212,7 +212,6 @@ HEADERS += \
qtextdocumentwriter_c.h \
qicon_c.h \
qpixmap_c.h \
qpixmapcache_c.h \
qimage_c.h \
qbitmap_c.h \
qpicture_c.h \
@ -557,7 +556,6 @@ SOURCES += \
qtextdocumentwriter_c.cpp \
qicon_c.cpp \
qpixmap_c.cpp \
qpixmapcache_c.cpp \
qimage_c.cpp \
qbitmap_c.cpp \
qpicture_c.cpp \

View File

@ -1,16 +0,0 @@
//******************************************************************************
// Copyright (c) 2014-2022 by Željan Rikalo
//
// See the included file COPYING.TXT for details about the copyright.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//******************************************************************************
#include "qpixmapcache_c.h"
void QPixmapCache_Clear()
{
QPixmapCache::clear();
}

View File

@ -1,20 +0,0 @@
//******************************************************************************
// Copyright (c) 2014-2022 by Željan Rikalo
//
// See the included file COPYING.TXT for details about the copyright.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//******************************************************************************
#ifndef QPIXMAP_C_H
#define QPIXMAP_C_H
#include <QtGui>
#include "pascalbind.h"
C_EXPORT void QPixmapCache_Clear();
#endif