~ted/ubuntu/lucid/tomboy/with-patch

« back to all changes in this revision

Viewing changes to Tomboy/RemoteControl.cs

Tags: upstream-0.7.2
Import upstream version 0.7.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
206
206
                        note.XmlContent = xml_contents;
207
207
                        return true;
208
208
                }
 
209
                
 
210
                public bool SetNoteContentsCompleteXml (string uri, string xml_contents)
 
211
                {
 
212
                        Note note;
 
213
                        note = note_manager.FindByUri (uri);
 
214
                        if (note == null)
 
215
                                return false;
 
216
                        note.LoadForeignNoteXml (xml_contents);
 
217
                        return true;
 
218
                }
209
219
        }
210
220
}