From 1ce06cec34ffa50b38a8506b67a70f4ad21ea560 Mon Sep 17 00:00:00 2001 From: Rene Gollent Date: Sun, 8 Feb 2009 22:59:06 +0000 Subject: [PATCH] Minor fix I noticed by accident: touchpad pref's BApplication signature didn't match the one declared in its rdef. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29170 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/preferences/touchpad/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/preferences/touchpad/main.cpp b/src/preferences/touchpad/main.cpp index 16209f71be..17f5865f9f 100644 --- a/src/preferences/touchpad/main.cpp +++ b/src/preferences/touchpad/main.cpp @@ -27,7 +27,7 @@ class TouchpadPrefWindow : public BWindow int main(int argc, char* argv[]) { - BApplication *app = new BApplication("application/touchpadpref"); + BApplication *app = new BApplication("application/x-vnd.Haiku-Touchpad"); TouchpadPrefWindow *window = new TouchpadPrefWindow(BRect(50, 50, 450, 350),"Touchpad", B_TITLED_WINDOW, B_NOT_RESIZABLE | B_NOT_ZOOMABLE | B_AVOID_FRONT | B_ASYNCHRONOUS_CONTROLS); window->AddChild(new TouchpadPrefView(window->Bounds(), "TouchpadPrefView"));