From e28ef85ab7cf943021316b98d869e94875d803a6 Mon Sep 17 00:00:00 2001 From: Rene Gollent Date: Sat, 15 Mar 2008 16:44:10 +0000 Subject: [PATCH] Unify the app signature used everywhere for the time prefs. This fixes dstcheck being unable to actually invoke the time prefs if asked to adjust the clock. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24403 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/deskbar/TimeView.cpp | 2 +- src/preferences/time/Time.cpp | 2 +- src/preferences/time/Time.rdef | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/apps/deskbar/TimeView.cpp b/src/apps/deskbar/TimeView.cpp index 110991fa4e..02f67560c2 100644 --- a/src/apps/deskbar/TimeView.cpp +++ b/src/apps/deskbar/TimeView.cpp @@ -227,7 +227,7 @@ TTimeView::MessageReceived(BMessage* message) case kMsgChangeClock: // launch the time prefs app - be_roster->Launch("application/x-vnd.Be-TIME"); + be_roster->Launch("application/x-vnd.Haiku-Time"); break; case 'time': diff --git a/src/preferences/time/Time.cpp b/src/preferences/time/Time.cpp index 76a2e6966c..3bf262ab37 100644 --- a/src/preferences/time/Time.cpp +++ b/src/preferences/time/Time.cpp @@ -18,7 +18,7 @@ #include -const char* kAppSignature = "application/x-vnd.Be-TIME"; +const char* kAppSignature = "application/x-vnd.Haiku-Time"; TimeApplication::TimeApplication() diff --git a/src/preferences/time/Time.rdef b/src/preferences/time/Time.rdef index c6bf975cfa..abd2dd8ae8 100644 --- a/src/preferences/time/Time.rdef +++ b/src/preferences/time/Time.rdef @@ -1,5 +1,5 @@ -resource app_signature "application/x-vnd.Be-TIME"; +resource app_signature "application/x-vnd.Haiku-Time"; resource app_flags B_SINGLE_LAUNCH;