Skip to content

Commit

Permalink
Don't export generic class names
Browse files Browse the repository at this point in the history
  • Loading branch information
stuarthayhurst committed Aug 21, 2023
1 parent a667b20 commit f1cff04
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions extension/extension.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* exported ExtensionManager */
/* exported PrivacyQuickSettingsManager */

//Main imports
import St from 'gi://St';
Expand Down Expand Up @@ -315,7 +315,7 @@ class IndicatorSettingsManager {
}
}

export default class ExtensionManager extends Extension {
export default class PrivacyQuickSettingsManager extends Extension {
enable() {
//Create new extension
this._privacyMenu = new PrivacyExtension(this.getSettings());
Expand Down
4 changes: 2 additions & 2 deletions extension/prefs.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* exported PrivacyPreferences */
/* exported PrivacyQuickSettingsPrefs */

//Main imports
import Gio from 'gi://Gio';
Expand Down Expand Up @@ -120,7 +120,7 @@ class PrefsPage extends Adw.PreferencesPage {
}
});

export default class PrivacyPreferences extends ExtensionPreferences {
export default class PrivacyQuickSettingsPrefs extends ExtensionPreferences {
//Create preferences window with libadwaita
fillPreferencesWindow(window) {
//Translated title, icon name
Expand Down

0 comments on commit f1cff04

Please sign in to comment.