mirror of
https://github.com/rizinorg/cutter
synced 2026-08-11 16:23:06 -04:00
* 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
8 lines
167 B
C++
8 lines
167 B
C++
#include "CutterLayout.h"
|
|
|
|
using namespace Cutter;
|
|
|
|
bool Cutter::isBuiltinLayoutName(const QString &name)
|
|
{
|
|
return name == layoutDefault || name == layoutDebug;
|
|
}
|