summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/newt-frontend.c
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-12-20 18:51:31 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-12-20 18:51:31 +0000
commita47038859dc156d832fdae38fff319b6585a5694 (patch)
treee071847dee82923596891bf167cd3d5f00285146 /mdk-stage1/newt-frontend.c
parent6f768666517680dbfe3bf9b128e6f9a038707140 (diff)
downloaddrakx-a47038859dc156d832fdae38fff319b6585a5694.tar
drakx-a47038859dc156d832fdae38fff319b6585a5694.tar.gz
drakx-a47038859dc156d832fdae38fff319b6585a5694.tar.bz2
drakx-a47038859dc156d832fdae38fff319b6585a5694.tar.xz
drakx-a47038859dc156d832fdae38fff319b6585a5694.zip
minimal bootsplash stage1 support
Diffstat (limited to 'mdk-stage1/newt-frontend.c')
-rw-r--r--mdk-stage1/newt-frontend.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mdk-stage1/newt-frontend.c b/mdk-stage1/newt-frontend.c
index 44fda1b73..534036ce9 100644
--- a/mdk-stage1/newt-frontend.c
+++ b/mdk-stage1/newt-frontend.c
@@ -117,7 +117,7 @@ static int size_progress;
static int actually_drawn;
static char * msg_progress;
-void init_progression(char *msg, int size)
+void init_progression_raw(char *msg, int size)
{
size_progress = size;
if (size) {
@@ -136,7 +136,7 @@ void init_progression(char *msg, int size)
}
}
-void update_progression(int current_size)
+void update_progression_raw(int current_size)
{
if (size_progress) {
if (current_size <= size_progress)
@@ -159,7 +159,7 @@ void update_progression(int current_size)
}
}
-void end_progression(void)
+void end_progression_raw(void)
{
if (size_progress) {
newtPopWindow();