mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-11 18:50:50 +00:00
Everywhere: Run clang-format
This commit is contained in:
parent
0376c127f6
commit
086969277e
Notes:
sideshowbarker
2024-07-17 16:21:09 +09:00
Author: https://github.com/IdanHo
Commit: 086969277e
Pull-request: https://github.com/SerenityOS/serenity/pull/12321
Reviewed-by: https://github.com/BertalanD
Reviewed-by: https://github.com/bgianfo ✅
1665 changed files with 8479 additions and 8479 deletions
|
@ -26,11 +26,11 @@
|
|||
#include <unistd.h>
|
||||
|
||||
// This is defined in ImportDialog.cpp, we can't include it twice, since the generated symbol is exported.
|
||||
extern const char select_format_page_gml[];
|
||||
extern char const select_format_page_gml[];
|
||||
|
||||
namespace Spreadsheet {
|
||||
|
||||
CSVExportDialogPage::CSVExportDialogPage(const Sheet& sheet)
|
||||
CSVExportDialogPage::CSVExportDialogPage(Sheet const& sheet)
|
||||
: m_data(sheet.to_xsv())
|
||||
{
|
||||
m_headers.extend(m_data.take_first());
|
||||
|
@ -213,7 +213,7 @@ void CSVExportDialogPage::update_preview()
|
|||
m_data_preview_text_editor->update();
|
||||
}
|
||||
|
||||
Result<void, String> CSVExportDialogPage::move_into(const String& target)
|
||||
Result<void, String> CSVExportDialogPage::move_into(String const& target)
|
||||
{
|
||||
auto& source = m_temp_output_file_path;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue