Fix typo.

This commit is contained in:
Martín Lucas Golini
2024-09-06 12:15:31 -03:00
parent 5382496f08
commit 0e8f512a7f
2 changed files with 5 additions and 6 deletions

View File

@@ -1,4 +1,3 @@
#include <algorithm>
#include <eepp/core/string.hpp>
#include <eepp/graphics/pixeldensity.hpp>
#include <eepp/graphics/text.hpp>
@@ -38,7 +37,7 @@ StyleSheetProperty::StyleSheetProperty( const PropertyDefinition* definition,
checkVars();
if ( NULL == mShorthandDefinition && NULL == mPropertyDefinition ) {
Log::warning( "Property \"%s\" is not defined!", mName.c_str() );
Log::warning( "Property \"%s\" is not defined!", mName );
}
}
@@ -62,7 +61,7 @@ StyleSheetProperty::StyleSheetProperty( const bool& isVolatile,
checkVars();
if ( NULL == mShorthandDefinition && NULL == mPropertyDefinition ) {
Log::warning( "Property \"%s\" is not defined!", mName.c_str() );
Log::warning( "Property \"%s\" is not defined!", mName );
}
}
@@ -88,7 +87,7 @@ StyleSheetProperty::StyleSheetProperty( const std::string& name, const std::stri
checkVars();
if ( NULL == mShorthandDefinition && NULL == mPropertyDefinition ) {
Log::warning( "Property \"%s\" is not defined!", mName.c_str() );
Log::warning( "Property \"%s\" is not defined!", mName );
}
}
@@ -114,7 +113,7 @@ StyleSheetProperty::StyleSheetProperty( const std::string& name, const std::stri
checkVars();
if ( NULL == mShorthandDefinition && NULL == mPropertyDefinition ) {
Log::warning( "Property \"%s\" is not defined!" );
Log::warning( "Property \"%s\" is not defined!", mName );
}
}

View File

@@ -370,7 +370,7 @@ static const auto SETTINGS_PANEL_XML = R"xml(
<vbox lw="mp" lh="wc" class="run_step">
<TextView class="subtitle" text="@string(run, Run)" focusable="false" />
<StackLayout is="run_select" lw="mp" lh="wc" class="stack_margins">
<StackLayout id="run_select" lw="mp" lh="wc" class="stack_margins">
<TextView text="@string(run_configuration_colon, Run configuration:)" focusable="false" />
<DropDownList id="run_list" layout_width="200dp" layout_height="19dp" />
<PushButton id="run_add" text="@string(add_ellipsis, Add...)" />