mirror of
https://github.com/fadden/ciderpress.git
synced 2024-11-26 02:49:20 +00:00
63b9996009
This updates all source files to use spaces instead of tabs for indentation. It also normalizes the end-of-line markers to be Windows-style CRLF, and ensures that all files end with EOL. No substantive changes were made; "diff -w" is empty.
30 lines
833 B
C++
30 lines
833 B
C++
/*
|
|
* CiderPress
|
|
* Copyright (C) 2007 by faddenSoft, LLC. All Rights Reserved.
|
|
* See the file LICENSE for distribution terms.
|
|
*/
|
|
/*
|
|
* Support for the "choose files" dialog.
|
|
*/
|
|
#include "stdafx.h"
|
|
#include "ChooseFilesDlg.h"
|
|
|
|
|
|
/*
|
|
* Override base class version so we can move our stuff around.
|
|
*
|
|
* It's important that the base class be called last, because it calls
|
|
* Invalidate to redraw the dialog.
|
|
*/
|
|
void
|
|
ChooseFilesDlg::ShiftControls(int deltaX, int deltaY)
|
|
{
|
|
/*
|
|
* These only need to be here so that the initial move puts them
|
|
* where they belong. Once the dialog has been created, the
|
|
* CFileDialog will move things where they need to go.
|
|
*/
|
|
MoveControl(this, IDC_CHOOSEFILES_STATIC1, 0, deltaY, false);
|
|
SelectFilesDialog::ShiftControls(deltaX, deltaY);
|
|
}
|