From 5d029ca0bd87f25658f57916cd7d8454cdb43072 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Sun, 16 Nov 2008 21:19:58 +0000 Subject: [PATCH] * Renamed settings file (removed the "pinc" part of it). * Removed BeOS compatible flag from the subdir. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28661 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/sudoku/Jamfile | 2 -- src/apps/sudoku/SudokuWindow.cpp | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/apps/sudoku/Jamfile b/src/apps/sudoku/Jamfile index f5996a64cf..dd3087c7f9 100644 --- a/src/apps/sudoku/Jamfile +++ b/src/apps/sudoku/Jamfile @@ -1,7 +1,5 @@ SubDir HAIKU_TOP src apps sudoku ; -SetSubDirSupportedPlatformsBeOSCompatible ; - UsePrivateHeaders shared ; Application Sudoku : diff --git a/src/apps/sudoku/SudokuWindow.cpp b/src/apps/sudoku/SudokuWindow.cpp index 8ebfd3460b..f8583e7626 100644 --- a/src/apps/sudoku/SudokuWindow.cpp +++ b/src/apps/sudoku/SudokuWindow.cpp @@ -296,7 +296,7 @@ SudokuWindow::_OpenSettings(BFile& file, uint32 mode) if (find_directory(B_USER_SETTINGS_DIRECTORY, &path) != B_OK) return B_ERROR; - path.Append("pinc.Sudoku settings"); + path.Append("Sudoku settings"); return file.SetTo(path.Path(), mode); }