Changeset 2695
- Timestamp:
- 08/13/07 18:03:52 (6 years ago)
- Location:
- trunk/src/target/OM-2007.2/libraries/libmokojournal2
- Files:
-
- 3 added
- 4 edited
-
ChangeLog (modified) (1 diff)
-
Makefile.am (modified) (1 diff)
-
configure.ac (modified) (1 diff)
-
mokojournal-tool (added)
-
mokojournal-tool/Makefile.am (added)
-
mokojournal-tool/mokojournal-tool.c (added)
-
mokojournal/moko-journal.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/target/OM-2007.2/libraries/libmokojournal2/ChangeLog
r2617 r2695 1 2007-08-13 Neil J. Patel <njp@o-hand.com> 2 3 * Makefile.am: 4 * configure.ac: 5 * mokojournal-tool/Makefile.am: 6 * mokojournal-tool/mokojournal-tool.c: (main), (_add), (_list): 7 Add a simple tool to query and manipulate the journal from the shell. It 8 will help with debugging. List method implemented so far. 9 10 * mokojournal/moko-journal.c: (moko_journal_load_from_storage), 11 If an error is detected, return FALSE. 12 (moko_journal_entry_has_voice_info): 13 Keep the type check inline, to avoid unnecessary throwing of warnings. 14 1 15 2007-08-03 Neil J. Patel <njp@o-hand.com> 2 16 -
trunk/src/target/OM-2007.2/libraries/libmokojournal2/Makefile.am
r2558 r2695 1 SUBDIRS = mokojournal tests1 SUBDIRS = mokojournal mokojournal-tool tests 2 2 3 3 pcdata_DATA= libmokojournal2.pc -
trunk/src/target/OM-2007.2/libraries/libmokojournal2/configure.ac
r2616 r2695 41 41 libmokojournal2.pc 42 42 mokojournal/Makefile 43 mokojournal-tool/Makefile 43 44 tests/Makefile 44 45 ]) -
trunk/src/target/OM-2007.2/libraries/libmokojournal2/mokojournal/moko-journal.c
r2617 r2695 1537 1537 g_error_free (error) ; 1538 1538 error = NULL ; 1539 return FALSE; 1539 1540 } 1540 1541 if (objs) … … 2044 2045 { 2045 2046 g_return_val_if_fail (entry, FALSE); 2046 2047 MokoJournalVoiceInfo *info = NULL; 2048 return moko_journal_entry_get_voice_info (entry, &info) && info; 2047 2048 if (entry->type == VOICE_JOURNAL_ENTRY) 2049 return TRUE; 2050 else 2051 return FALSE; 2049 2052 } 2050 2053
Note: See TracChangeset
for help on using the changeset viewer.
