move c header back to astal-powerprofiles.h

This commit is contained in:
Aylur
2024-07-18 12:19:04 +02:00
parent c3c807c7e7
commit 15592c0dd7
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -31,12 +31,12 @@ if get_option('lib')
meson.project_name(),
sources,
dependencies: deps,
vala_header: meson.project_name().replace('astal-', '') + '.h',
vala_header: meson.project_name() + '.h',
vala_vapi: meson.project_name() + '-' + api_version + '.vapi',
vala_gir: gir,
version: meson.project_version(),
install: true,
install_dir: [true, get_option('includedir') / 'astal', true, true],
install_dir: [true, true, true, true],
)
import('pkgconfig').generate(
+1 -1
View File
@@ -183,7 +183,7 @@ public struct Hold {
public string reason;
}
string kebab_case(string pascal_case) {
private string kebab_case(string pascal_case) {
StringBuilder kebab_case = new StringBuilder();
for (int i = 0; i < pascal_case.length; i++) {