cutter/src/common/CutterLayout.cpp
Premade 1e6782de48
Refactor code to match new style (#3612)
* Refactor code to match coding style
* NULL to nullptr
* clang format 16
* Remove unused header
* Fix ordering of headers
* QtResImporter: Don't ignore return value of file.open()
* Add missing memory header
* GraphGridLayout: Remove <ranges>
* GraphGridLayout: no views::reverse
* Fix typos
* Console widget cmd fix
2026-05-21 14:26:49 +05:00

8 lines
167 B
C++

#include "CutterLayout.h"
using namespace Cutter;
bool Cutter::isBuiltinLayoutName(const QString &name)
{
return name == layoutDefault || name == layoutDebug;
}