mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 09:36:41 -04:00
20 lines
789 B
C
20 lines
789 B
C
--- src/system/SystemComponent.h.orig 2025-03-18 16:40:48 UTC
|
|
+++ src/system/SystemComponent.h
|
|
@@ -65,7 +65,8 @@ class SystemComponent : public ComponentBase (public)
|
|
platformTypeOsx,
|
|
platformTypeWindows,
|
|
platformTypeLinux,
|
|
- platformTypeOpenELEC
|
|
+ platformTypeOpenELEC,
|
|
+ platformTypeFreeBSD
|
|
};
|
|
|
|
// possible values for target types
|
|
@@ -108,6 +109,7 @@ signals: (private)
|
|
bool platformIsWindows() const { return m_platformType == platformTypeWindows; }
|
|
bool platformIsMac() const { return m_platformType == platformTypeOsx; }
|
|
bool platformIsLinux() const { return m_platformType == platformTypeLinux; }
|
|
+ bool platformIsFreeBSD() const { return m_platformType == platformTypeFreeBSD; }
|
|
|
|
QTimer* m_mouseOutTimer;
|
|
PlatformType m_platformType;
|