@@ -26,15 +26,15 @@ class SongListLayer final : public geode::Popup<> {
2626 void onSortDateToggle (CCObject*);
2727 void onSortLengthToggle (CCObject*);
2828 void onSortSizeToggle (CCObject*);
29- void disableAllSortFiltersThenToggleThenSearch (std::string_view savedValueKey );
30- void toggleSavedValueAndSearch (std::string_view savedValueKey );
29+ void disableAllSortFiltersThenToggleThenSearch (const std::string_view);
30+ void toggleSavedValueAndSearch (const std::string_view);
3131 void keyDown (const cocos2d::enumKeyCodes) override ;
32- void searchSongs (const std::string& queryString );
32+ void searchSongs (const std::string&);
3333
34- static std::string generateDisplayName (SongData& songData );
35- static bool tallEnough (geode::ScrollLayer* scrollLayer );
36- static float determineYPosition (geode::ScrollLayer* scrollLayer );
37- static void displayCurrentSongByLimitingPlaceholderLabelWidth (CCTextInputNode * inputNode, const bool updateString = true );
34+ static std::string generateDisplayName (SongData&);
35+ static bool tallEnough (geode::ScrollLayer*);
36+ static float determineYPosition (geode::ScrollLayer*);
37+ static void displayCurrentSongByLimitingPlaceholderLabelWidth (CCTextInputNode* inputNode, const bool updateString = true );
3838
3939 static bool caseInsensitiveAlphabetical (MLRSongCell* a, MLRSongCell* b, bool reverse);
4040 static bool fileSize (MLRSongCell* a, MLRSongCell* b, bool reverse);
@@ -43,5 +43,5 @@ class SongListLayer final : public geode::Popup<> {
4343
4444 static unsigned int getLength (const std::string& path, const bool reverse);
4545
46- void update (float ) override ;
46+ void displayCurrentSongByLimitingPlaceholderLabelWidthScheduler (float ) const ;
4747};
0 commit comments