mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-05-28 17:16:29 +03:00
Fix typo.
This commit is contained in:
@@ -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 );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -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...)" />
|
||||
|
||||
Reference in New Issue
Block a user