Ignore:
Timestamp:
Mar 10, 2007, 6:58:41 PM (18 years ago)
Author:
cinc
Message:

Renamed wpSetWPObject()/wpQueryWPObject() of class WPWindow to wpSetObject()/wpQueryObject() for consistency.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/desktop/idl/wpwindow.idl

    r245 r247  
    7979     g_object_set_data(G_OBJECT(window), NOMOBJECT_KEY_STRING, nomSelf);
    8080     \endcode
    81      That call is used internally by the WPWindow class to connect a WPWindow instance
     81     That function is used internally by the WPWindow class to connect a WPWindow instance
    8282     (nomSelf in this call) with a GTK window.
    8383
     
    8989     \par Example:
    9090     The follwing code is a method implementation of class WPFolder. It creates a new
    91      folder window (of class WPFolderWindow) and uses wpSetWPObject() to connect the folder
     91     folder window (of class WPFolderWindow) and uses wpSetObject() to connect the folder
    9292     object (nomSelf) with the folder window.
    9393     \include wpsetwpobject.c
    9494
    95      \sa wpQueryWPObject()
     95     \sa wpQueryObject()
    9696   */
    97   void wpSetWPObject(in PWPObject wpObject);
     97  void wpSetObject(in PWPObject wpObject);
    9898
    9999  /**
     
    104104     g_object_get_data(G_OBJECT(window), NOMOBJECT_KEY_STRING);
    105105     \endcode
    106      Using that call one queries the window object (\b not the desktop object) from
     106     Using that function one queries the window object (\b not the desktop object) from
    107107     a GTK toplevel window.
    108108
     
    110110     This method is usually not overriden.
    111111
    112      \sa wpSetWPObject()
     112     \sa wpSetObject()
    113113  */
    114   PWPObject wpQueryWPObject();
     114  PWPObject wpQueryObject();
    115115  void wpSetWindowTitle(in PNOMString newTitle);
    116116  NOMINSTANCEVAR(PWPObject wpObject);
Note: See TracChangeset for help on using the changeset viewer.