Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
jami-client-macos
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
savoirfairelinux
jami-client-macos
Commits
23f61559
Commit
23f61559
authored
9 years ago
by
Alexandre Lision
Committed by
Alexandre Lision
9 years ago
Browse files
Options
Downloads
Patches
Plain Diff
log: remove debugging log
Refs #67102 Change-Id: I93201360c6618efba10ae251b76b625aa96e5052
parent
e08065c5
No related branches found
Branches containing commit
Tags
0.1.0
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
ConversationsViewController.mm
+0
-2
0 additions, 2 deletions
ConversationsViewController.mm
CurrentCallVC.mm
+0
-5
0 additions, 5 deletions
CurrentCallVC.mm
RingWindowController.mm
+0
-1
0 additions, 1 deletion
RingWindowController.mm
with
0 additions
and
8 deletions
ConversationsViewController.mm
+
0
−
2
View file @
23f61559
...
...
@@ -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
)]];
...
...
This diff is collapsed.
Click to expand it.
CurrentCallVC.mm
+
0
−
5
View file @
23f61559
...
...
@@ -206,7 +206,6 @@
QObject
::
connect
(
CallModel
::
instance
()
->
selectionModel
(),
&
QItemSelectionModel
::
currentChanged
,
[
=
](
const
QModelIndex
&
current
,
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
()];
}
...
...
This diff is collapsed.
Click to expand it.
RingWindowController.mm
+
0
−
1
View file @
23f61559
...
...
@@ -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
];
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment