~cahr-gr/gloobus-preview/monitors

« back to all changes in this revision

Viewing changes to src/plugin-pixbuf/plugin-pixbuf.cpp

  • Committer: Jordi Puigdellívol
  • Date: 2010-05-26 14:35:12 UTC
  • mfrom: (213.1.33 gloobus-preview)
  • Revision ID: jordi@badchoice-20100526143512-bhndzc2y7o8un30v
Merged, now its really good

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#include "plugin-pixbuf.h"
2
2
 
3
 
GdkPixbuf * iPhoto::get_pixbuf ()
 
3
iPixbuf::iPixbuf() {
 
4
        g_debug("Creating iPixbuf");
 
5
}
 
6
 
 
7
iPixbuf::~iPixbuf() {
 
8
        g_debug("Destroying iPixbuf");
 
9
}
 
10
 
 
11
GdkPixbuf * iPixbuf::get_pixbuf ()
4
12
{
5
13
        g_debug("PLUGIN: Loading photo (%s)",m_filename.c_str());
6
14
        return gdk_pixbuf_new_from_file (m_filename.c_str(),NULL);