Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
halo
packages_apps_Bluetooth
Commits
59582607
Commit
59582607
authored
15 years ago
by
Daisuke Miyakawa
Browse files
Options
Download
Email Patches
Plain Diff
Fix a build breakage.
Make Bluetooth code use new type instead of old.
parent
19b9dd3e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/com/android/bluetooth/pbap/BluetoothPbapVcardManager.java
...com/android/bluetooth/pbap/BluetoothPbapVcardManager.java
+2
-2
No files found.
src/com/android/bluetooth/pbap/BluetoothPbapVcardManager.java
View file @
59582607
...
...
@@ -362,9 +362,9 @@ public class BluetoothPbapVcardManager {
// Currently only support Generic Vcard 2.1 and 3.0
int
vcardType
;
if
(
vcardType21
)
{
vcardType
=
VCardConfig
.
VCARD_TYPE_V21_GENERIC
;
vcardType
=
VCardConfig
.
VCARD_TYPE_V21_GENERIC
_UTF8
;
}
else
{
vcardType
=
VCardConfig
.
VCARD_TYPE_V30_GENERIC
;
vcardType
=
VCardConfig
.
VCARD_TYPE_V30_GENERIC
_UTF8
;
}
composer
=
new
VCardComposer
(
mContext
,
vcardType
,
true
);
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment