mirror of
https://git.freebsd.org/ports.git
synced 2025-06-15 01:30:33 -04:00
- Support staging - Use new LIB_DEPENDS syntax - Convert USE_GMAKE to USES - Use new OPTIONS features - Enable options by default as centerim-devel does PR: 185982 Submitted by: amdmi3 Approved by: maintainer timeout
27 lines
518 B
C++
27 lines
518 B
C++
--- src/hooks/abstracthook.h.orig 2011-05-23 01:06:31.000000000 +0400
|
|
+++ src/hooks/abstracthook.h 2014-01-21 08:30:44.206593005 +0400
|
|
@@ -47,11 +47,7 @@
|
|
};
|
|
|
|
class abstracthook {
|
|
- protected:
|
|
- enum Encoding {
|
|
- encUTF, encKOI, encUnknown
|
|
- };
|
|
-
|
|
+ public:
|
|
enum logevent {
|
|
logConnecting,
|
|
logLogged,
|
|
@@ -63,6 +59,11 @@
|
|
logConfMembers
|
|
};
|
|
|
|
+ protected:
|
|
+ enum Encoding {
|
|
+ encUTF, encKOI, encUnknown
|
|
+ };
|
|
+
|
|
protocolname proto;
|
|
imstatus manualstatus;
|
|
verticalmenu *searchdest;
|