ui/app: fix a few C signatures and a comment typo

Signed-off-by: Elias Naur <mail@eliasnaur.com>
This commit is contained in:
Elias Naur
2019-07-07 16:33:11 +02:00
parent f110c26e3f
commit 1a417d353c
7 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -67,7 +67,7 @@ static CGFloat getPointsPerDP(NSScreen *screen) {
}
// Pixels pr dp.
CGFloat gio_getPixelsPerDP() {
CGFloat gio_getPixelsPerDP(void) {
NSScreen *screen = [NSScreen mainScreen];
return [screen backingScaleFactor] * getPointsPerDP(screen);
}