mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 18:16:48 -04:00
- Allow to build without internal help browser: it requires rather heavy QtWebEngine component which currently is also deprecated - Optionize FITS support; drop no longer needed PKGNAMESUFFIX and CONFLICTS_INSTALL knobs PR: 239887
22 lines
650 B
C
22 lines
650 B
C
--- src/MainWindow/MainWindow.h.orig 2021-01-11 09:41:28 UTC
|
|
+++ src/MainWindow/MainWindow.h
|
|
@@ -146,7 +146,9 @@ class MainWindow : public QMainWindow {
|
|
void on_normalSizeAct_triggered();
|
|
void updateMagnificationButtons(GenericViewer *);
|
|
|
|
+#ifdef WITH_HELPBROWSER
|
|
void on_documentationAction_triggered();
|
|
+#endif
|
|
void enterWhatsThis();
|
|
|
|
void on_OptionsAction_triggered();
|
|
@@ -180,7 +182,9 @@ class MainWindow : public QMainWindow {
|
|
void enableCrop(bool);
|
|
void disableCrop();
|
|
|
|
+#ifdef WITH_HELPBROWSER
|
|
void helpBrowserClosed();
|
|
+#endif
|
|
void on_actionDonate_triggered();
|
|
|
|
void onUpdateAvailable();
|