Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-kde
Path: blob/main/editors/fxite/files/patch-src_fxasq.h
16461 views
1
--- src/fxasq.h.orig 2013-10-03 09:22:51 UTC
2
+++ src/fxasq.h
3
@@ -17,8 +17,11 @@
4
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
5
*/
6
7
+#ifndef FXASQ_H
8
+#define FXASQ_H
9
10
#include "fxasq_c.h"
11
+#include "compat.h"
12
13
14
class FxAsqWin: public FXObject {
15
@@ -33,7 +36,7 @@ class FxAsqWin: public FXObject {
16
void AppendResult(const char*key, const char*value);
17
void PutResults();
18
protected:
19
- FXDict keylist;
20
+ Dictionary keylist;
21
FXVerticalFrame *userbox;
22
public:
23
24
@@ -55,4 +58,5 @@ class FxAsqWin: public FXObject {
25
void Color( const char*key, const char*value, const char*label);
26
void Font( const char*key, const char*value, const char*label);
27
};
28
+#endif
29
30
31