File: fix_missing_qmap_includes.patch

package info (click to toggle)
choqok 1.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 9,556 kB
  • sloc: cpp: 26,332; xml: 670; makefile: 12; sh: 3
file content (91 lines) | stat: -rw-r--r-- 2,121 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
Description: add missing includes for QMap
 It seems that these where previously added by some other header.
Author: Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=941155
Forwarded: no

---
 plugins/betternotify/notify.h               |    1 +
 plugins/untiny/untiny.h                     |    1 +
 plugins/uploaders/flickr/flickr.h           |    2 ++
 plugins/uploaders/imageshack/imageshack.h   |    2 ++
 plugins/uploaders/mobypicture/mobypicture.h |    2 ++
 plugins/uploaders/posterous/posterous.h     |    2 ++
 plugins/uploaders/twitgoo/twitgoo.h         |    2 ++
 7 files changed, 12 insertions(+)

--- a/plugins/betternotify/notify.h
+++ b/plugins/betternotify/notify.h
@@ -28,6 +28,7 @@
 #include <QPoint>
 #include <QPointer>
 #include <QTimer>
+#include <QMap>
 
 #include "plugin.h"
 
--- a/plugins/untiny/untiny.h
+++ b/plugins/untiny/untiny.h
@@ -31,6 +31,7 @@
 #include <QQueue>
 #include <QUrl>
 #include <QPointer>
+#include <QMap>
 
 namespace KIO {
 class Job;
--- a/plugins/uploaders/imageshack/imageshack.h
+++ b/plugins/uploaders/imageshack/imageshack.h
@@ -24,6 +24,8 @@
 #ifndef IMAGESHACK_H
 #define IMAGESHACK_H
 
+#include <QMap>
+
 #include "uploader.h"
 
 #include <QMap>
--- a/plugins/uploaders/mobypicture/mobypicture.h
+++ b/plugins/uploaders/mobypicture/mobypicture.h
@@ -24,6 +24,8 @@
 #ifndef MOBYPICTURE_H
 #define MOBYPICTURE_H
 
+#include <QMap>
+
 #include "uploader.h"
 
 #include <QMap>
--- a/plugins/uploaders/posterous/posterous.h
+++ b/plugins/uploaders/posterous/posterous.h
@@ -24,6 +24,8 @@
 #ifndef POSTEROUS_H
 #define POSTEROUS_H
 
+#include <QMap>
+
 #include "uploader.h"
 
 #include <QMap>
--- a/plugins/uploaders/twitgoo/twitgoo.h
+++ b/plugins/uploaders/twitgoo/twitgoo.h
@@ -24,6 +24,8 @@
 #ifndef TWITGOO_H
 #define TWITGOO_H
 
+#include <QMap>
+
 #include "uploader.h"
 
 #include <QMap>
--- a/plugins/uploaders/flickr/flickr.h
+++ b/plugins/uploaders/flickr/flickr.h
@@ -24,6 +24,8 @@
 #ifndef FLICKR_H
 #define FLICKR_H
 
+#include <QMap>
+
 #include "uploader.h"
 
 #include <QMap>