Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dead code cleanup pt1 #3071

Merged
merged 7 commits into from
Feb 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ jobs:
run: |
brew install gnupg
brew install openssl@1.1
brew install python3
brew install ccache
brew install ninja

pip3 install -U pip
pip3 install aqtinstall

Expand Down
69 changes: 69 additions & 0 deletions app/images/ReachedDataLimit.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 0 additions & 3 deletions app/images/ReachedDataLimitImage.svg

This file was deleted.

2 changes: 1 addition & 1 deletion app/images/images.qrc
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<file>MMSymbol.svg</file>
<file>PositionTrackingRunning.svg</file>
<file>PositionTrackingStart.svg</file>
<file>ReachedDataLimitImage.svg</file>
<file>ReachedDataLimit.svg</file>
<file>TrackingDirection.svg</file>
<file>UploadImage.svg</file>
<file>WarnLogoImage.svg</file>
Expand Down
2 changes: 1 addition & 1 deletion app/mmstyle.h
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ class MMStyle: public QObject
QUrl acceptInvitationImage() {return QUrl( "qrc:/images/AcceptInvitationImage.svg" ); }
QUrl uploadImage() {return QUrl( "qrc:/images/UploadImage.svg" );}
QUrl noMapThemesImage() {return QUrl( "qrc:/images/NoMapThemesImage.svg" );}
QUrl reachedDataLimitImage() {return QUrl( "qrc:/images/ReachedDataLimitImage.svg" );}
QUrl reachedDataLimitImage() {return QUrl( "qrc:/images/ReachedDataLimit.svg" );}
QUrl warnLogoImage() {return QUrl( "qrc:/images/WarnLogoImage.svg" );}
QUrl mapPinImage() {return QUrl( "qrc:/images/MapPin.svg" );}
QUrl positionTrackingRunningImage() {return QUrl( "qrc:/images/PositionTrackingRunning.svg" );}
Expand Down
20 changes: 2 additions & 18 deletions app/qml/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ set(MM_QML
components/MMRoundButton.qml
components/MMButton.qml
components/MMCodeScanner.qml
components/MMComponent_reachedDataLimit.qml
components/MMCheckBox.qml
components/MMDrawerDialog.qml
components/MMDropdownDrawer.qml
Expand Down Expand Up @@ -103,6 +102,7 @@ set(MM_QML
dialogs/SplittingFailedDialog.qml
dialogs/SyncFailedDialog.qml
dialogs/MMMapThemePanel.qml
dialogs/MMStorageLimitDialog.qml
inputs/MMBaseInput.qml
inputs/MMPasswordInput.qml
inputs/MMTextInput.qml
Expand Down Expand Up @@ -130,6 +130,7 @@ set(MM_QML
form/editors/MMFormValueRelationEditor.qml
form/editors/MMFormSpacer.qml
form/editors/MMFormRichTextViewer.qml
form/MMFormStackManager.qml
layers/MMFeaturesListPage.qml
layers/MMLayerDetail.qml
layers/MMLayersListPage.qml
Expand Down Expand Up @@ -166,30 +167,13 @@ set(MM_QML
settings/MMSettingsController.qml
dialogs/MMPositionTrackingDrawer.qml
Banner.qml
CircularProgressBar.qml
CodeScanner.qml
CodeScannerOverlay.qml
CreateWorkspacePage.qml
ExternalResourceBundle.qml
FeaturesList.qml
FeaturesListPage.qml
FeaturesListPageToolbar.qml
FormsStackManager.qml
InputStyle.qml
ManageInvitationsPage.qml
Notification.qml
NotificationBanner.qml
NumberSpin.qml
PanelItem.qml
PanelTabButton.qml
ProjectLimitDialog.qml
RegistrationFinishPage.qml
RoundIndicator.qml
SearchBar.qml
StakeoutPanel.qml
StorageLimitDialog.qml
SwitchWorkspacePage.qml
WhatsNewDialog.qml
main.qml
PARENT_SCOPE
)
76 changes: 0 additions & 76 deletions app/qml/CircularProgressBar.qml

This file was deleted.

95 changes: 0 additions & 95 deletions app/qml/CodeScanner.qml

This file was deleted.

98 changes: 0 additions & 98 deletions app/qml/CodeScannerOverlay.qml

This file was deleted.

Loading
Loading