Update of /cvsroot/paranoidandroid/paranoidandroid/Sources/Common
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7974/Sources/Common
Modified Files:
CFConstants.cpp CFConstants.h Constants.h Constants.mm
Log Message:
Updated to 1.3. PA now notifies you when attempting to open a file using an application other than the default.
Index: CFConstants.cpp
===================================================================
RCS file: /cvsroot/paranoidandroid/paranoidandroid/Sources/Common/CFConstants.cpp,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** CFConstants.cpp 27 May 2004 11:33:57 -0000 1.1.1.1
--- CFConstants.cpp 21 Feb 2006 22:16:32 -0000 1.2
***************
*** 14,17 ****
--- 14,19 ----
// Prefs Keys
+ const CFStringRef kPA_PREF_WatchSchemes = CFSTR("shouldWatchSchemes");
+ const CFStringRef kPA_PREF_WatchRemapping = CFSTR("shouldWatchRemapping");
const CFStringRef kPA_PREF_Schemes = CFSTR("Whitelist Schemes");
Index: CFConstants.h
===================================================================
RCS file: /cvsroot/paranoidandroid/paranoidandroid/Sources/Common/CFConstants.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** CFConstants.h 27 May 2004 11:33:57 -0000 1.1.1.1
--- CFConstants.h 21 Feb 2006 22:16:33 -0000 1.2
***************
*** 19,22 ****
--- 19,24 ----
// Prefs Keys
+ extern const CFStringRef kPA_PREF_WatchSchemes;
+ extern const CFStringRef kPA_PREF_WatchRemapping;
extern const CFStringRef kPA_PREF_Schemes;
Index: Constants.h
===================================================================
RCS file: /cvsroot/paranoidandroid/paranoidandroid/Sources/Common/Constants.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** Constants.h 27 May 2004 11:33:57 -0000 1.1.1.1
--- Constants.h 21 Feb 2006 22:16:33 -0000 1.2
***************
*** 15,17 ****
--- 15,19 ----
// Prefs Keys
+ extern NSString *kPA_NS_PREF_WatchSchemes;
+ extern NSString *kPA_NS_PREF_WatchRemapping;
extern NSString *kPA_NS_PREF_Schemes;
Index: Constants.mm
===================================================================
RCS file: /cvsroot/paranoidandroid/paranoidandroid/Sources/Common/Constants.mm,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** Constants.mm 27 May 2004 11:33:57 -0000 1.1.1.1
--- Constants.mm 21 Feb 2006 22:16:33 -0000 1.2
***************
*** 14,16 ****
--- 14,18 ----
// Prefs Keys
+ NSString *kPA_NS_PREF_WatchSchemes = (NSString *)kPA_PREF_WatchSchemes;
+ NSString *kPA_NS_PREF_WatchRemapping = (NSString *)kPA_PREF_WatchRemapping;
NSString *kPA_NS_PREF_Schemes = (NSString *)kPA_PREF_Schemes;
|