From 23f615594e0d5eb07ce74f07d99806469a391667 Mon Sep 17 00:00:00 2001 From: Alexandre Lision <alexandre.lision@gmail.com> Date: Sun, 29 Mar 2015 21:41:56 -0400 Subject: [PATCH] log: remove debugging log Refs #67102 Change-Id: I93201360c6618efba10ae251b76b625aa96e5052 --- ConversationsViewController.mm | 2 -- CurrentCallVC.mm | 5 ----- RingWindowController.mm | 1 - 3 files changed, 8 deletions(-) diff --git a/ConversationsViewController.mm b/ConversationsViewController.mm index f514d76e..4b7ce22d 100644 --- a/ConversationsViewController.mm +++ b/ConversationsViewController.mm @@ -70,8 +70,6 @@ QObject::connect(CallModel::instance(), &QAbstractItemModel::dataChanged, [=](const QModelIndex &topLeft, const QModelIndex &bottomRight) { - NSLog(@"data changed for call tree %d, %d", topLeft.row(), bottomRight.row()); - [conversationsView reloadDataForRowIndexes: [NSIndexSet indexSetWithIndexesInRange:NSMakeRange(topLeft.row(), bottomRight.row() + 1)] columnIndexes:[NSIndexSet indexSetWithIndexesInRange:NSMakeRange(0, conversationsView.tableColumns.count)]]; diff --git a/CurrentCallVC.mm b/CurrentCallVC.mm index 337aa23d..ba70063e 100644 --- a/CurrentCallVC.mm +++ b/CurrentCallVC.mm @@ -206,7 +206,6 @@ QObject::connect(CallModel::instance()->selectionModel(), &QItemSelectionModel::currentChanged, [=](const QModelIndex ¤t, const QModelIndex &previous) { - NSLog(@"selection changed!"); if(!current.isValid()) { [self animateOut]; return; @@ -219,14 +218,12 @@ QObject::connect(CallModel::instance(), &QAbstractItemModel::dataChanged, [=](const QModelIndex &topLeft, const QModelIndex &bottomRight) { - NSLog(@"data changed!"); [self updateCall]; }); QObject::connect(CallModel::instance()->userActionModel(), &QAbstractItemModel::dataChanged, [=](const QModelIndex &topLeft, const QModelIndex &bottomRight) { - NSLog(@"useraction changed"); const int first(topLeft.row()),last(bottomRight.row()); for(int i = first; i <= last;i++) { [self updateActionAtIndex:i]; @@ -236,7 +233,6 @@ QObject::connect(CallModel::instance(), &CallModel::callStateChanged, [self](Call* c, Call::State state) { - NSLog(@"callStateChanged"); [self updateCall]; }); } @@ -255,7 +251,6 @@ if(call->videoRenderer()) { - NSLog(@"GONNA CONNECT TO FRAMES"); [self connectVideoRenderer:call->videoRenderer()]; } diff --git a/RingWindowController.mm b/RingWindowController.mm index 59eb8873..f46bf664 100644 --- a/RingWindowController.mm +++ b/RingWindowController.mm @@ -247,7 +247,6 @@ static NSString* const kCallButtonIdentifer = @"CallButtonIdentifier"; - (BOOL)control:(NSControl *)control textView:(NSTextView *)fieldEditor doCommandBySelector:(SEL)commandSelector { - NSLog(@"Selector method is (%@)", NSStringFromSelector( commandSelector ) ); if (commandSelector == @selector(insertNewline:)) { if([[callField stringValue] isNotEqualTo:@""]) { [self placeCall:nil]; -- GitLab