summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 638f2ed)
raw | patch | inline | side by side (parent: 638f2ed)
author | dwyip <dwyip@users.sourceforge.net> | |
Mon, 17 Apr 2006 04:11:12 +0000 (04:11 +0000) | ||
committer | dwyip <dwyip@users.sourceforge.net> | |
Mon, 17 Apr 2006 04:11:12 +0000 (04:11 +0000) |
src/jabber_whiteboard/session-file-player.cpp | patch | blob | history | |
src/jabber_whiteboard/session-manager.cpp | patch | blob | history |
diff --git a/src/jabber_whiteboard/session-file-player.cpp b/src/jabber_whiteboard/session-file-player.cpp
index 538d0bc91b9e0da62061dac699fd1cc0d114dc34..cc4842e5beb99cc6b0dd2758cdbfab818e717583 100644 (file)
this->_visited.push_front(std::make_pair< gint64, gint64 >(this->_current, this->_curmsg.bytes()));
this->_outputMessageToWidget();
this->_sm->receiveChange(this->_curmsg);
- sp_document_done(SP_DT_DOCUMENT(this->_sm->desktop()));
+ sp_document_done(sp_desktop_document(this->_sm->desktop()));
this->_curdir = FORWARD;
return true;
}
this->_next = last.first + last.second;
this->_sf->nextMessageFrom(this->_current, this->_curmsg);
this->_outputMessageToWidget();
- sp_document_undo(SP_DT_DOCUMENT(this->_sm->desktop()));
+ sp_document_undo(sp_desktop_document(this->_sm->desktop()));
this->_curdir = BACKWARD;
return true;
}
index a52a7a878997815576e11190ef3277ee3b27ca23..5b07e2c135cdd31e959ac9ed671dfb6c57b04517 100644 (file)
if (this->_myDoc != NULL) {
Inkscape::GC::release(this->_myDoc);
}
- if (SP_DT_DOCUMENT(desktop) != NULL) {
- this->_myDoc = SP_DT_DOCUMENT(desktop);
+ if (sp_desktop_document(desktop) != NULL) {
+ this->_myDoc = sp_desktop_document(desktop);
Inkscape::GC::anchor(this->_myDoc);
}
}