removing some cruft

This commit is contained in:
Chris Cochrun 2024-09-17 10:07:36 -05:00
parent 50fc745335
commit e0bcce3f72
2 changed files with 6 additions and 26 deletions

View file

@ -100,14 +100,6 @@ impl Default for SongEditorRust {
}
impl song_editor::SongEditor {
fn idk(self: Pin<&mut Self>) {
if let Some(model) = unsafe { self.song_model().as_mut() } {
let pinned_model = unsafe { Pin::new_unchecked(model) };
pinned_model.update_ccli(0, QString::from("idk"));
}
todo!();
}
fn load_song(mut self: Pin<&mut Self>, song_index: i32) {
if let Some(model) = unsafe { self.song_model().as_ref() } {
let pinned_model = unsafe { Pin::new_unchecked(model) };