Skip to content

Commit

Permalink
travis: add some debug traces
Browse files Browse the repository at this point in the history
  • Loading branch information
bagage committed Jan 15, 2016
1 parent 6a1e42a commit 6005387
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions Classes/ChatConversationView.m
Original file line number Diff line number Diff line change
Expand Up @@ -496,6 +496,7 @@ - (IBAction)onListTap:(id)sender {
}

- (IBAction)onDeleteClick:(id)sender {
LOGI(@"onDeleteClick");
NSString *msg = [NSString stringWithFormat:NSLocalizedString(@"Do you want to delete selected messages?", nil)];
[UIConfirmationDialog ShowWithMessage:msg
cancelMessage:nil
Expand Down
1 change: 1 addition & 0 deletions Classes/LinphoneUI/UICheckBoxTableView.m
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ - (void)onSelectionToggle:(id)sender {
[_selectedItems removeAllObjects];

[self selectToggleButton:!_toggleSelectionButton.selected]; // TODO: why do we need that?
LOGI(@"onSelectionToggle: select %@", _toggleSelectionButton.selected ? @"NONE" : @"ALL");
for (int i = 0; i < [self numberOfSectionsInTableView:self.tableView]; i++) {
for (int j = 0; j < [self tableView:self.tableView numberOfRowsInSection:i]; j++) {
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:j inSection:i];
Expand Down

0 comments on commit 6005387

Please sign in to comment.