user-accounts: Rename UmAccountDialog to CcAddUserDialog
Um is a naming hangover from before this was part of g-c-c.
This commit is contained in:
parent
0d754295ce
commit
112b61c0ff
8 changed files with 168 additions and 174 deletions
40
panels/user-accounts/cc-add-user-dialog.h
Normal file
40
panels/user-accounts/cc-add-user-dialog.h
Normal file
|
@ -0,0 +1,40 @@
|
|||
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
|
||||
*
|
||||
* Copyright 2009-2010 Red Hat, Inc,
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* Written by: Matthias Clasen <mclasen@redhat.com>
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <act/act.h>
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
#define CC_TYPE_ADD_USER_DIALOG (cc_add_user_dialog_get_type ())
|
||||
G_DECLARE_FINAL_TYPE (CcAddUserDialog, cc_add_user_dialog, CC, ADD_USER_DIALOG, GtkDialog)
|
||||
|
||||
CcAddUserDialog *cc_add_user_dialog_new (void);
|
||||
void cc_add_user_dialog_show (CcAddUserDialog *self,
|
||||
GtkWindow *parent,
|
||||
GPermission *permission,
|
||||
GAsyncReadyCallback callback,
|
||||
gpointer user_data);
|
||||
ActUser *cc_add_user_dialog_finish (CcAddUserDialog *self,
|
||||
GAsyncResult *result);
|
||||
|
||||
G_END_DECLS
|
Loading…
Add table
Add a link
Reference in a new issue