Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
94258b4
LmmsExporterSample_adding_class
szeli1 Dec 18, 2024
98cffce
CMakeLists_adding_new_class_target
szeli1 Dec 19, 2024
96a2287
LmmsExporterSample_fixing_printf
szeli1 Dec 19, 2024
9117d77
SampleClip_implementing_static_exporter
szeli1 Dec 19, 2024
43328ea
SampleClipView_implementing_exporting_context_menu_option
szeli1 Dec 19, 2024
020e425
LmmsExporterSample_fixing_typo
szeli1 Dec 19, 2024
5dc1651
SamleClipView_fixing_typo
szeli1 Dec 19, 2024
7cf8bb8
LmmsExporterSample_removing_blank_line
szeli1 Dec 19, 2024
a884d1c
LmmsExporterSample_removing_LMMS_EXPORT
szeli1 Dec 19, 2024
6da5e91
LmmsExporterSample_removing_ifdef
szeli1 Dec 19, 2024
43c19cc
LmmsExporterSample_removing_more_blank_lines
szeli1 Dec 19, 2024
8e39af2
LmmsMassExporter_renaming
szeli1 Jan 4, 2025
083085e
LmmsMassExporter_moving_sndfile_code_to_new_class
szeli1 Jan 4, 2025
e0633e1
CMakeLists_updating_class_names
szeli1 Jan 4, 2025
974634c
SampleClip_updating_class_names
szeli1 Jan 4, 2025
efdb5a6
SampleClipView_updating_class_names
szeli1 Jan 4, 2025
acef235
LmmsMassExporter_removing_include_QFile
szeli1 Jan 4, 2025
d201257
LmmsMassExporter_implementing_callback
szeli1 Jan 4, 2025
94bc1e2
SampleClip_implementing_sample_reloading
szeli1 Jan 4, 2025
fb446ab
SampleClipView_updating_names
szeli1 Jan 4, 2025
ce014e5
LmmsMassExporter_moving_flac_exporter
szeli1 Jan 5, 2025
43661fb
FlacExporter_moving_to_new_file
szeli1 Jan 5, 2025
67918a9
LmmsMassExporter_updating_description
szeli1 Jan 5, 2025
fbe413f
Use FileDialog::getSaveFileName
michaelgregorius Jan 4, 2025
4b8ba9b
CMakeLists_adding_FlacExporter_cmake_target
szeli1 Jan 5, 2025
cca3c0b
LmmsMassExporter_removing_blank_line
szeli1 Jan 5, 2025
8f450ac
Save file with user selected name
michaelgregorius Jan 6, 2025
15ce7cd
LmmsMassExporter_renaming_to_ThreadedExportManager
szeli1 Jan 8, 2025
76fa656
CMakeLists_renaming_class
szeli1 Jan 8, 2025
cdf7b8c
SampleClipView_removing_LmmsMassExporter_include
szeli1 Jan 8, 2025
dbff613
SampleClip_renaming_class
szeli1 Jan 8, 2025
b8916c2
FlacExporter_adding_sync_function_before_destructing
szeli1 Jan 8, 2025
bc3a485
SampleClip_removing_export_callback
szeli1 Mar 11, 2025
e1bad1b
Engine_moving_export_manager_here
szeli1 May 8, 2025
ed6494d
SampleClip_removing_export_manager
szeli1 May 8, 2025
a27a600
SampleClipView_changing_icon
szeli1 May 8, 2025
cc300ad
ThreadedExportManager_reworking_code
szeli1 May 8, 2025
8f35a86
FlacExporter_applying_requested_changes
szeli1 May 8, 2025
252d357
SampleClip_removing_unused_variable
szeli1 May 8, 2025
db54a46
SampleClipView_removing_code
szeli1 May 8, 2025
488078b
ThreadedExportManager_fix_aborting_when_exporting
szeli1 May 10, 2025
f8d5c56
SampleClipView replacing file dialog
szeli1 May 14, 2025
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
Prev Previous commit
Next Next commit
SampleClip_updating_class_names
  • Loading branch information
szeli1 committed May 8, 2025
commit 974634c075972d6028aa49f9dc65b6ebb0dd19b8
4 changes: 2 additions & 2 deletions include/SampleClip.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
namespace lmms
{

class LmmsExporterSample;
class LmmsMassExporter;
class SampleBuffer;

namespace gui
Expand Down Expand Up @@ -101,7 +101,7 @@ public slots:
BoolModel m_recordModel;
bool m_isPlaying;

static std::unique_ptr<LmmsExporterSample> s_sampleExporter;
static std::unique_ptr<LmmsMassExporter> s_sampleExporter;

friend class gui::SampleClipView;

Expand Down
4 changes: 2 additions & 2 deletions src/core/SampleClip.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#include <QDomElement>
#include <QFileInfo>

#include "LmmsExporterSample.h"
#include "LmmsMassExporter.h"
#include "PathUtil.h"
#include "SampleBuffer.h"
#include "SampleClipView.h"
Expand All @@ -38,7 +38,7 @@
namespace lmms
{

std::unique_ptr<LmmsExporterSample> SampleClip::s_sampleExporter = std::make_unique<LmmsExporterSample>();
std::unique_ptr<LmmsMassExporter> SampleClip::s_sampleExporter = std::make_unique<LmmsMassExporter>();


SampleClip::SampleClip(Track* _track, Sample sample, bool isPlaying)
Expand Down