diff options
author | Michele Calgaro <[email protected]> | 2024-05-15 12:38:32 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-05-15 12:38:32 +0900 |
commit | c0bcd64f7fce74db2ef792e73ed5eceb079fd64f (patch) | |
tree | 7f08fbe9e83f796d076eaf96f260551f01265e5c /chalk/core/kis_datamanager.h | |
parent | 8bc8b24757e1cdf11d60bbeea3c7eaac7e4b8dd0 (diff) | |
download | koffice-c0bcd64f7fce74db2ef792e73ed5eceb079fd64f.tar.gz koffice-c0bcd64f7fce74db2ef792e73ed5eceb079fd64f.zip |
Replace KDE_DEPRECATED with TDE_DEPRECATED
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'chalk/core/kis_datamanager.h')
-rw-r--r-- | chalk/core/kis_datamanager.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chalk/core/kis_datamanager.h b/chalk/core/kis_datamanager.h index 79f7ddb8..26b46081 100644 --- a/chalk/core/kis_datamanager.h +++ b/chalk/core/kis_datamanager.h @@ -154,13 +154,13 @@ public: /** * Get a read-only pointer to the specified pixel. */ - inline KDE_DEPRECATED const TQ_UINT8* pixel(TQ_INT32 x, TQ_INT32 y) + inline TDE_DEPRECATED const TQ_UINT8* pixel(TQ_INT32 x, TQ_INT32 y) { return ACTUAL_DATAMGR::pixel(x, y); } /** * Get a read-write pointer to the specified pixel. */ - inline KDE_DEPRECATED TQ_UINT8* writablePixel(TQ_INT32 x, TQ_INT32 y) + inline TDE_DEPRECATED TQ_UINT8* writablePixel(TQ_INT32 x, TQ_INT32 y) { return ACTUAL_DATAMGR::writablePixel(x, y); } /** |